void osenv_timer_register(void (*func)(void), int freq);
Component OS, Nonblocking
Requests that the function func gets called freq times per second.XXX: Default implementation currently only works for freq equal to 100.
- func
- Address of function to be called.
- freq
- Times per second to call the handler.