UIO-4035 RS485:U-COM1/2、U-COM3/4

From ESS-WIKI
Revision as of 07:17, 20 December 2024 by Xingxing.li (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

UIO-4035 both have four RS485 ports.

RTENOTITLE

RTENOTITLE

RTENOTITLE

Send and Receive Data

The following figure shows the connection mode.

UIO-4035 RS485 1.png

Taking COM1 as receiver and COM2 as sender :

# #---- COM1 as receiver ----# #
# stty -F /dev/ttyUSB0 115200 cs8 -cstopb -parenb -crtscts
# cat /dev/ttyUSB0 &

# #---- COM2 as sender ----# #
# stty -F /dev/ttyUSB1 115200 cs8 -cstopb -parenb -crtscts
# echo pass > /dev/ttyUSB1

# #----If no error, the receiver will receive “pass”----# #
pass

RTENOTITLE