alarm_pool_add_alarm_at_force_in_context() function
Add an alarm callback to be called at or after a specific time 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. Unlike alarm_pool_add_alarm_at, this method guarantees to call the callback from that core even if the time is during this method call or in the past.
Arguments
pool
the alarm pool to use for scheduling the callback (this determines which timer_alarm is used, and which core calls the callback)
time
the timestamp when (after which) the callback should fire
callback
the callback function
user_data
user data to pass to the callback function
Return value
>0 the alarm id for an active (at the time of return) alarm <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.