:orphan: .. title:: NRF_RTC_TIMER .. option:: CONFIG_NRF_RTC_TIMER *nRF Real Time Counter (NRF\_RTC1) Timer* Type: ``bool`` Help ==== .. code-block:: none This module implements a kernel device driver for the nRF Real Time Counter NRF_RTC1 and provides the standard "system clock driver" interfaces. Direct dependencies =================== (\ :option:`SYS_CLOCK_EXISTS ` && \ :option:`BOARD_QEMU_CORTEX_M0 `) || (\ :option:`SYS_CLOCK_EXISTS ` && \ :option:`SOC_FAMILY_NRF `) || (\ :option:`CLOCK_CONTROL ` && \ :option:`SOC_COMPATIBLE_NRF `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - n - y Symbols selected by this symbol =============================== - \ :option:`TICKLESS_CAPABLE ` - \ :option:`NRF_HW_RTC1_RESERVED ` Symbols that select this symbol =============================== - \ :option:`BOARD_NRF52_BSIM ` Kconfig definitions =================== At ``/arm/qemu_cortex_m0/Kconfig.defconfig:24`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. code-block:: kconfig config NRF_RTC_TIMER bool default n depends on SYS_CLOCK_EXISTS && BOARD_QEMU_CORTEX_M0 ---- At ``/arm/nordic_nrf/Kconfig.defconfig:16`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:19`` → ``/kconfig/Kconfig.soc.defconfig:1`` Menu path: (Top) .. code-block:: kconfig config NRF_RTC_TIMER bool default y depends on SYS_CLOCK_EXISTS && SOC_FAMILY_NRF ---- At ``/timer/Kconfig:153`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``/Kconfig:28`` Menu path: (Top) → Device Drivers → Timer Drivers .. code-block:: kconfig config NRF_RTC_TIMER bool "nRF Real Time Counter (NRF_RTC1) Timer" select TICKLESS_CAPABLE select NRF_HW_RTC1_RESERVED depends on CLOCK_CONTROL && SOC_COMPATIBLE_NRF help This module implements a kernel device driver for the nRF Real Time Counter NRF_RTC1 and provides the standard "system clock driver" interfaces. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*