Hi,
My board is TM4C123GH6PGE. What i'm tring to achieve is to send hex commands to another controller throw the UART. Currently, i can send and receive data throw UART0 (USB cable) while connected to the PC. With a simple serial port teminal app' i can see the messages that i send from the controller to the PC.
I looked over the uart_echo.c example and i tried to change all of the UART0 references to UART3, and also initiate the relevent pins. After that i connected the Rx, Tx, GND and VCC(3.3) pins to an TTL to RS232 convertor because as i know, RS232 protocol doesn't work with 3.3v.
Now that my system is connected to the PC i tried to send messages between the PC and the controller but now my PC doesn't get anything from the controller.
My code for sending to PC is:
UARTCharPut(UART3_BASE, 0xAB);
My final achievement is to send data from TI controller to anothe controller, by i prety sure that if it work with the PC i will work with another controller (non TI).
Thank You.