alarm_pool_add_alarm_in_ms() function
Add an alarm callback to be called after a delay specified in milliseconds 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 callback (this determines which timer_alarm is used, and which core calls the callback)
ms
the delay (from now) in milliseconds when (after which) the callback should fire
callback
the callback function
user_data
user data to pass to the callback function
fire_if_past
if true, and the alarm time falls before or during this call before the alarm can be set, then the callback should be called during (by) this function instead
Return value
>0 the alarm id 0 if the alarm time passed before or during the call and fire_if_past was false <0 if there were no alarm slots available, or other error occurred
Notes
It is safe to call this method from an IRQ handler (including alarm callbacks), and from either core.