1# Copyright (c) 2021-23, NXP 2# SPDX-License-Identifier: Apache-2.0 3 4config COUNTER_MCUX_LPC_RTC 5 bool "MCUX LPC RTC driver" 6 default y 7 depends on DT_HAS_NXP_LPC_RTC_ENABLED || \ 8 DT_HAS_NXP_LPC_RTC_HIGHRES_ENABLED 9 help 10 Enable the LPC rtc driver. 11 12config COUNTER_MCUX_LPC_RTC_1HZ 13 bool "MCUX LPC RTC 1Hz counter driver" 14 default y 15 depends on DT_HAS_NXP_LPC_RTC_ENABLED 16 help 17 Enable support for LPC 1Hz counter. 18 19config COUNTER_MCUX_LPC_RTC_HIGHRES 20 bool "MCUX LPC RTC High Resolution counter driver" 21 default y 22 depends on DT_HAS_NXP_LPC_RTC_HIGHRES_ENABLED 23 help 24 Enable support for LPC rtc high resolution counter. 25