Skip to content

Commit

Permalink
samples: boards: nrf: nrfx: Fix (D)PPI dependency
Browse files Browse the repository at this point in the history
Fix dependency which was not correctly working as (D)PPI was enabled
by UART and not by this setting. When other modules were not enabling
(D)PPI it was not enabled and compilation was failing.

Signed-off-by: Krzysztof Chruściński <[email protected]>
  • Loading branch information
nordic-krch committed Sep 9, 2024
1 parent a46cef4 commit b609541
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/boards/nrf/nrfx/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# SPDX-License-Identifier: Apache-2.0

config NRFX_DPPI
default $(dt_has_compat,$(DT_COMPAT_NORDIC_NRF_DPPIC))
default HAS_HW_NRF_DPPIC

config NRFX_PPI
default $(dt_has_compat,$(DT_COMPAT_NORDIC_NRF_PPI))
default HAS_HW_NRF_PPI

config NRFX_GPIOTE0
default y if SOC_SERIES_NRF51X || \
Expand Down

0 comments on commit b609541

Please sign in to comment.