alarm_pool_add_repeating_timer_us() function
Add a repeating timer that is called repeatedly at the specified interval in microseconds Generally the callback is called as soon as possible after the time specified from an IRQ handler on the core the alarm pool was created on. If the callback is in the past or happens before the alarm setup could be completed, then this method will optionally call the callback itself and then return a return code to indicate that the target time has passed.
Arguments
pool
the alarm pool to use for scheduling the repeating timer (this determines which timer_alarm is used, and which core calls the callback)
delay_us
the repeat delay in microseconds; if >0 then this is the delay between one callback ending and the next starting; if <0 then this is the negative of the time between the starts of the callbacks. The value of 0 is treated as 1
callback
the repeating timer callback function
user_data
user data to pass to store in the repeating_timer structure for use by the callback.
out
the pointer to the user owned structure to store the repeating timer info in. BEWARE this storage location must outlive the repeating timer, so be careful of using stack space
Return value
false if there were no alarm slots available to create the timer, true otherwise.
Notes
It is safe to call this method from an IRQ handler (including alarm callbacks), and from either core.