26#include "nrf_peripherals.h"
35#define MPSL_HIGH_IRQ_PRIORITY 0
38#define MPSL_BUILD_REVISION_SIZE 20
41#if defined(PPI_PRESENT)
42#define MPSL_RESERVED_PPI_CHANNELS ((1UL << 19) | (1UL << 30) | (1UL << 31))
43#elif defined(GRTC_PRESENT)
44#define MPSL_RESERVED_PPI_CHANNELS (1UL << 0)
45#elif defined(DPPIC_PRESENT)
46#define MPSL_RESERVED_PPI_CHANNELS ((1UL << 0) | (1UL << 1) | (1UL << 2))
48#error Unknown NRF series.
void mpsl_low_priority_process(void)
MPSL low priority processing handler.
void(* mpsl_assert_handler_t)(const char *const file, const uint32_t line)
Bitmask of (D)PPI channels reserved for MPSL.
Definition: mpsl.h:58
void mpsl_pan_rfu(void)
RFU.
int32_t mpsl_build_revision_get(uint8_t *p_build_revision)
Obtain build revision.
void mpsl_uninit(void)
Uninitialize MPSL. Stops clocks and scheduler. This will release all peripherals and reduce power usa...
void MPSL_IRQ_RADIO_Handler(void)
RADIO interrupt handler.
void mpsl_calibration_timer_handle(void)
Application needs to call this when calibration shall occur.
int32_t mpsl_init(mpsl_clock_lfclk_cfg_t const *p_clock_config, IRQn_Type low_prio_irq, mpsl_assert_handler_t p_assert_handler)
MPSL initialization.
void MPSL_IRQ_CLOCK_Handler(void)
POWER_CLOCK interrupt handler.
bool mpsl_is_initialized(void)
Returns true if MPSL is already initialized, false otherwise.
void MPSL_IRQ_RTC0_Handler(void)
RTC0 interrupt handler.
void MPSL_IRQ_TIMER0_Handler(void)
TIMER0 interrupt handler.
Type representing LFCLK oscillator source.
Definition: mpsl_clock.h:58