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

◆ mpsl_work_submit()

static void mpsl_work_submit ( struct k_work *  work)
inlinestatic

#include <include/mpsl/mpsl_work.h>

Submit a work item to the MPSL workqueue.

This routine submits work item work to be processed by the MPSL workqueue. If the work item is already pending in the MPSL workqueue or any other workqueue as a result of an earlier submission, this routine has no effect on the work item. If the work item has already been processed, or is currently being processed, its work is considered complete and the work item can be resubmitted.

Note
Work items submitted to the MPSL workqueue should avoid using handlers that block or yield since this may prevent the MPSL workqueue from processing other work items in a timely manner.
Can be called by ISRs.
Parameters
workAddress of work item.