Hi Infineon,
i just started with the xmc 1300. Using the UART Example with Apps I wrote a small example code.
The IsTxBusy stays true forever.
Is this normal? API feels very non intuitive.
Regards max
i just started with the xmc 1300. Using the UART Example with Apps I wrote a small example code.
Code:
uint8_t init_data[] = "HELLO\r\n";
uint8_t read_data_s[10];
UART_Transmit(&UART_0, init_data, sizeof(init_data));
while(UART_IsTxBusy(&UART_0)){};
UART_Receive(&UART_0, read_data_s,10);
Is this normal? API feels very non intuitive.
Regards max