Hello,
I am using CC2650 Launchpad with ble_sdk_2_02_01_18 stack and tirtos_cc13xx_cc26xx_2_20_01_08 RTOS.
I am using UART_write() function to write 21bytes.
I write 21bytes using 5 UART_write() function. one after the other.
UART_write(uart,&abc,1);
UART_write(uart,xyz,sizeof(xyz));
UART_write(uart,qwe,sizeof(qwe)-2);
UART_write(uart,&tyu,1);
UART_write(uart,&ghj,1);
This loop is running every 200ms, but sometimes i get 42bytes instead of 21bytes.
What could be the issue ?
Thanks and Regards
Gourang