Hi,
In a point of my app, I need to stop the execution and wait for a sync event.
I can't find any sleep() or delay() function that stops some ms the execution without blocking the system.
The solution of programming a Timer and do a while(x){} is not valid for me. It would be if I could find a noop() function to put inside the "while", so the device doesn't freeze.
Do you know if there is a function for that?
Thank you!!!