Forums:
Hello there i am using CY8C4247LQI-BL483.
In uart, i know that ascii value are transmitted like. if i transmit 'A', then it will transmit 0x41.
can you tell me how to do this in cypress uart?
there are two functions for it.
(1) UART_UartPutChar
(2) UART_UartPutString
like i have
uint8_t tx_data[2] ={0xAA}
UART_UartPutChar(tx_data[0])
but its not working for me.
can you tell me solution??