6d4a5200bc
Reduced Kconfig for counter with nRF TIMER and RTC. Added overlays for TIMER and RTC configuration in the counter test. Signed-off-by: Krzysztof Chruscinski <krzysztof.chruscinski@nordicsemi.no>
75 lines
1.6 KiB
Plaintext
75 lines
1.6 KiB
Plaintext
# Copyright (c) 2017 - 2018, Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
config COUNTER_NRF_TIMER
|
|
bool
|
|
select NRFX_TIMER
|
|
|
|
config COUNTER_NRF_RTC
|
|
bool
|
|
select NRFX_RTC
|
|
|
|
config COUNTER_TIMER0
|
|
bool "Enable Counter on TIMER0"
|
|
depends on HAS_HW_NRF_TIMER0
|
|
depends on !BT_LL_SW
|
|
select COUNTER_NRF_TIMER
|
|
select NRFX_TIMER0
|
|
|
|
config COUNTER_TIMER1
|
|
bool "Enable Counter on TIMER1"
|
|
depends on HAS_HW_NRF_TIMER1
|
|
select COUNTER_NRF_TIMER
|
|
select NRFX_TIMER1
|
|
|
|
config COUNTER_TIMER2
|
|
bool "Enable Counter on TIMER2"
|
|
depends on HAS_HW_NRF_TIMER2
|
|
select COUNTER_NRF_TIMER
|
|
select NRFX_TIMER2
|
|
|
|
config COUNTER_TIMER3
|
|
bool "Enable Counter on TIMER3"
|
|
depends on HAS_HW_NRF_TIMER3
|
|
select COUNTER_NRF_TIMER
|
|
select NRFX_TIMER3
|
|
|
|
config COUNTER_TIMER4
|
|
bool "Enable Counter on TIMER4"
|
|
depends on HAS_HW_NRF_TIMER4
|
|
select COUNTER_NRF_TIMER
|
|
select NRFX_TIMER4
|
|
|
|
config COUNTER_RTC0
|
|
bool "Enable Counter on RTC0"
|
|
depends on HAS_HW_NRF_RTC0
|
|
depends on !BT_LL_SW
|
|
select COUNTER_NRF_RTC
|
|
select NRFX_RTC0
|
|
|
|
config COUNTER_RTC1
|
|
bool "Enable Counter on RTC1"
|
|
depends on HAS_HW_NRF_RTC1
|
|
depends on !NRF_RTC_TIMER
|
|
select COUNTER_NRF_RTC
|
|
select NRFX_RTC1
|
|
|
|
config COUNTER_RTC2
|
|
bool "Enable Counter on RTC2"
|
|
depends on HAS_HW_NRF_RTC2
|
|
select COUNTER_NRF_RTC
|
|
select NRFX_RTC2
|
|
|
|
# Internal flag which detects if PPI wrap feature is enabled for any instance
|
|
if $(dt_int_val,DT_NORDIC_NRF_RTC_0_PPI_WRAP) > 0 || \
|
|
$(dt_int_val,DT_NORDIC_NRF_RTC_1_PPI_WRAP) > 0 || \
|
|
$(dt_int_val,DT_NORDIC_NRF_RTC_2_PPI_WRAP) > 0
|
|
|
|
config COUNTER_RTC_WITH_PPI_WRAP
|
|
bool
|
|
default y
|
|
select NRFX_PPI if HAS_HW_NRF_PPI
|
|
select NRFX_DPPI if HAS_HW_NRF_DPPIC
|
|
endif
|