Hi,
Setting the scene:
I have several sensors that are decoded via an external device that outputs UART serial data (115200 baud rate).
The data looks like this:
Received string: 1,1177,1,1175,2,0,20,119,136
This can be received fine by my UART RTT code running on the nordic 52840-dk.
However if I add another sensor it does not read the string at all and the board becomes locked.
The new string is : (Note is was tested via arduino serial)
1,1177,1,1175,1,1150,2,0,20,119,136
So my question is why when the string gets longer does it cause the code to stop working?
My RTT setup code is below for reference:
Thanks
To read the data I use app_uart_get(&c) where c is a uint8_t.
This is the relevant header code: