Hey,
I am working with periodic event and I put it for 1 ms, if I am doing an operation that is taking for example 5 ms!
would the periodic task callback function be aborted after 1 ms (a new periodic event) or would wait for the end of the process?!
is it will wait and finish the periodic task normally, would the next periodic event take place immediately ? if yes, would it make 5 events because 5 ms was passed so it should serve 5 events that were registered or only one event is registered?
Thanks.