skyrock123 0 Posted April 30, 2024 Hello Tinker experts, I want your help regarding tinker board r2.0 about GPIO pins, let me explain what I'm trying to do I want to send and receive data through two tinker boards from the port ttyS1 with hardware flow control enabled both boards have same configuration of serial port ttyS1 and hardware flow is enabled but when I send data through a board using python import serial ser = serial.Serial('/dev/ttyS1', baudrate=9600, rtscts=True) # Print initial RTS and CTS status print("RTS:", ser.rts) print("CTS:", ser.cts) # Transmit data ser.write(b'Hello') # Print RTS and CTS status after transmission print("RTS:", ser.rts) print("CTS:", ser.cts) I'm getting the output showing CTS = False before and after data transmission, and in the other board I can't see any data incoming in minicom this is same for the other boards also I have connected GP5B1(TX) , GP5B0(RX) , VCC, GND, GP5B2(CTS) and GP5B3(RTS) in both boards through RS232 connection in both boards but when I connect the ttyS1 to USB of my windows laptop and send data through dock light with hardware flow control enabled I'm able to send and receive data I can't read the data even if the hardware flow control is disabled between two tinker boards.. the issue occurs when I connect two tinker boards with rs232 please help me with this problem.. Share this post Link to post Share on other sites
tooz 53 Posted May 3, 2024 hello @skyrock123, we've tried to reproduce the issue using image v.3.0.23 and can confirm the data can be sent and received through uart1 here are the steps for reproduction: https://www.asuswebstorage.com/navigate/a/#/s/077D58B319314CA9AB298E8F012540C04 did you connect the uart tx (from the first tinker r2.0) to uart rx (from the second tinker r2.0)? Share this post Link to post Share on other sites
skyrock123 0 Posted May 3, 2024 Hello @tooz thank you for the reply, I already figured out the issue. It was in the hardware connection cable I have corrected it and now I'm able to do data transmission. Share this post Link to post Share on other sites