Hello,
I receive a lot of data in my UART, like 256B non stop that I need to send it to a tablet through BLE.
I was thinking of using scheduler so I push the data and an event in the DATA_READY uart event and the main thread will process the pushed data to send through BLE. What do you think about that? Does it sound ok?
In my case when calling APP_SCHED_INIT what is the EVENT SIZE parameter?
I am afraid that the fifo will be full pretty quick so maybe thats not the best design.