I want to send many commands through RS-232 to an aircraft display unit. Rx, Tx signal to send/receive have the amplitude -6V to +6V. As the manual of this display unit, the commands to send have the type as: "360 0 2", "610 0 1E", "510 0 1F", "503 0 EEEE",... for maintenance or reset hardware.
Can you give me some advices how to send, configure, perform,... this commands through RS-232 port ?
Thank you,
V5D
I look at your example! I see spaces. Those are neither numeric nor hex. Therefor the only possible interpretation of your example is they are simply ASCII characters. With spaces being a valid ASCII character.
You cannot directly connect the Arduino UART Rx & Tx pins as they do not provide the voltages required by RS-232. You will need an adapter as @jim-p mentioned in post #3.
The outputs Tx signal amplitude of this M4KSerialPlus is ±6V. This signal connected to input (pin #13, R1IN) of IC MAX232 (Vcc = 5V). The output is at pin #12, R1OUT) that has an amplitude around +4V to send to a CPU (I guess). That Why I'm thinking If I can use an Arduino to send and read data from CPU of device bypassing the RS232 IC and adaptor board M4KSerialPlus.