Hi all,
MCU: Tiva C TM4C1294NCPDT
IDE: CCS V6.0.1
I have 4-tasks to read UART data(for com0,com1,com2 and com RS485). I created a buffer array with size 256.
I am using UART_read function
ret = UART_read(uart_handle, *txbuffer, 256);
my com0 is working fine, meaning that UART_read and UART_write functions are working. But the same code when i write for com1, com2,com RS485(changing port address). UART_read is not working....
I am expecting any data put on the uart_handle line will be read by this task. However, it does not do what I expect it.
How can I read any data as long as uart2 receives them?