UART_Params params;
UART_Params_init(¶ms);
// Open an instance of the UART drivers
UART_Handle handle = UART_open(UART_INSTANCE, ¶ms);
Can I use handle for both read and write at same time? If yes, is there any limit on read and write? Thanks