nRF Connect SDK API 3.3.99
Loading...
Searching...
No Matches

◆ mpsl_work_reschedule()

static void mpsl_work_reschedule ( struct k_work_delayable * dwork,
k_timeout_t delay )
inlinestatic

#include <include/mpsl/mpsl_work.h>

Reschedule a work item to the MPSL work queue after a delay.

Note
Can be called by ISRs.
Work items submitted to the MPSL work queue should avoid using handlers that block or yield since this may prevent the MPSL work queue from processing other work items in a timely manner.
If the work item has not been scheduled before, this behavior is the same as mpsl_work_schedule().
Parameters
dworkaddress of delayable work item.
delaythe time to wait before submitting the work item. If K_NO_WAIT and the work is not pending this is equivalent to mpsl_work_submit().