I am starting with UART communication in PIC32MX795F512l. This UART will communicate with PC. I was just wondering that it is important to connect RTS & CTS or just connecting Rx Tx GND will make the communication? Some websites say RTS & CTS are also important but some say that its not important. I am really confused. Please help.!
Asked
Active
Viewed 1,114 times
4
Aircraft
- 1,666
- 1
- 12
- 26
-
They're only important if the device uses them. – Ignacio Vazquez-Abrams Aug 12 '15 at 07:20
-
I didnt get you properly.? – Aircraft Aug 12 '15 at 07:24
-
1RTS and CTS are hardware handshaking signals. As such, they're usually optional, as most transmitters and receivers can be configured to either use these signals or not. Only connecting VCC, GND, Rx and Tx will work. Don't forget to cross the pairs so PC Rx goes to PIC Tx and PC Tx goes to PIC Rx. – FRob Aug 12 '15 at 07:34
2 Answers
1
RTS & CTS are not always important. You can directly make cross connections like
Rx -> Tx
Tx -> Rx
GND -> GND
anna carolina
- 366
- 1
- 5
- 17
0
Rx, Tx, GND pins are enough for communication. However in UART bootloader applications RTS pin is important and used for resetting MCU
rodeomusty
- 21
- 6