Skip to content

Commit c5080ca

Browse files
nordic-krchmasz-nordic
authored andcommitted
[nrf noup] modules: hal_nordic: Use GPPI for NRF54LX
Use GPPI even when DPPIC nodes are not enabled if platform is NRF54LX. Currently DPPIC nodes are not enabled in FLPR and that allows to use GPPI there. Signed-off-by: Krzysztof Chruściński <[email protected]>
1 parent 2bd6027 commit c5080ca

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

modules/hal_nordic/nrfx/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,9 @@ zephyr_library_sources_ifdef(CONFIG_HAS_NORDIC_RAM_CTRL ${HELPERS_DIR}/nrf
129129

130130
if(CONFIG_NRFX_GPPI AND NOT CONFIG_NRFX_GPPI_V1)
131131
zephyr_library_sources_ifdef(CONFIG_HAS_HW_NRF_PPI ${HELPERS_DIR}/nrfx_gppi_ppi.c)
132-
zephyr_library_sources_ifdef(CONFIG_HAS_HW_NRF_DPPIC ${HELPERS_DIR}/nrfx_gppi_dppi.c)
132+
if(CONFIG_SOC_SERIES_NRF54LX OR CONFIG_HAS_HW_NRF_DPPIC)
133+
zephyr_library_sources(${HELPERS_DIR}/nrfx_gppi_dppi.c)
134+
endif()
133135
zephyr_library_sources_ifdef(CONFIG_SOC_COMPATIBLE_NRF54LX ${HELPERS_DIR}/nrfx_gppi_lumos.c)
134136
endif()
135137

0 commit comments

Comments
 (0)