Lines Matching refs:callback
35 … is recommended to only do the minimal possible amount of work from the callback itself, posting a…
37 If other tasks with priority higher than ``esp_timer`` are running, callback dispatching will be de…
41 …callback takes some time. Therefore there is a lower limit to the timeout value of one-shot ``esp_…
48 …y :cpp:type:`esp_timer_handle_t` type. Timer has a callback function associated with it. This call…
55 …tart_once`, passing the time interval after which the callback should be called. When the callback…
57 …:cpp:func:`esp_timer_start_periodic`, passing the period with which the callback should be called.…
64 .. note: Keep the callback functions as short as possible otherwise it will affect all timers.
72 During light sleep, the esp_timer counter stops and no callback functions are called.
83 then only one callback is called on wake.
91 If the timer is late then the callback will be called as soon as possible, it will not be lost.
96 the callback will still result in only one callback event once processing is possible.