Well, thats the question... What's te right way to call a handler used for MillisTimer.
For example, I have the handler used for MT:
void timerWDTresetHandler (MillisTimer &mt){
esp_task_wdt_reset();
}
And I want to call it sometimes like timerWDTresetHandler(); or something like that.
I could do some workarounds to do this, but what would be the right way of doing it?
Thanks!