Difference between revisions of "UIO-4033 RS485:COM1、COM2、COM3、COM4"

From ESS-WIKI
Jump to: navigation, search
Line 16: Line 16:
 
The following figure shows the connection mode.
 
The following figure shows the connection mode.
  
[[File:UIO-4033 COM1 2.png]]
+
[[File:UIO-4033 COM1 2.png|RTENOTITLE]]
 
 
 
 
  
 
'''Taking COM1 as receiver and COM2 as sender :'''
 
'''Taking COM1 as receiver and COM2 as sender :'''
 
 
 
<pre># #---- COM1 as receiver ----# #
 
<pre># #---- COM1 as receiver ----# #
 
# stty -F /dev/ttyUSB0 115200 cs8 -cstopb -parenb -crtscts
 
# stty -F /dev/ttyUSB0 115200 cs8 -cstopb -parenb -crtscts

Revision as of 04:37, 20 December 2024

UIO-4033 & UIO-4035 both have four RS485 ports.

RTENOTITLE

RTENOTITLE

RTENOTITLE

RTENOTITLE

RTENOTITLE

Send and Receive Data

The following figure shows the connection mode.

RTENOTITLE

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