Skip to content

Commit

Permalink
nrf_802154: fix add missing select NRFX_GPPI
Browse files Browse the repository at this point in the history
When CONFIG_NRF_802154_SL=y on the nRF52 and nRF53 Series the
sdk-nrf uses the nrf_802154_platform_sl_lptimer_zephyr.c file.
This file explicitly depends on NRFX_GPPI api.

The NRFX_GPPI was selected indirectly by other modules, but if
the other modules are turned off, the NRFX_GPPI was not selected.

This commit fixes that. The CONFIG_NRFX_GPPI is selected When
nRF 802.15.4 Radio Driver with closed-source SL is used on
nRF52 and nRF53 series.

Signed-off-by: Andrzej Kuros <[email protected]>
  • Loading branch information
ankuns authored and anangl committed Jan 23, 2025
1 parent b5c1a84 commit 54c85cf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions nrf_802154/zephyr/Kconfig.nrfxlib
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ config NRF_802154_SL
select DYNAMIC_INTERRUPTS
select SENSOR if NRF_802154_TEMPERATURE_UPDATE
select TEMP_NRF5_MPSL if NRF_802154_TEMPERATURE_UPDATE
select NRFX_GPPI if SOC_COMPATIBLE_NRF52X || SOC_COMPATIBLE_NRF53X
select NRFX_PPI if SOC_COMPATIBLE_NRF52X
select NRFX_DPPI0 if SOC_COMPATIBLE_NRF53X || SOC_SERIES_NRF53X
select NRFX_DPPI20 if SOC_SERIES_NRF54LX
Expand Down

0 comments on commit 54c85cf

Please sign in to comment.