:orphan: .. title:: COUNTER_RTC_STM32 .. option:: CONFIG_COUNTER_RTC_STM32 *STM32 Counter RTC driver* Type: ``bool`` Help ==== .. code-block:: none Build RTC driver for STM32 SoCs. Tested on STM32 F0, F2, F3, F4, L1, L4, F7, G0, G4, H7 series Direct dependencies =================== (\ :option:`COUNTER ` && \ :option:`SOC_FAMILY_STM32 `) || (\ :option:`SOC_FAMILY_STM32 ` && \ :option:`COUNTER `) *(Includes any dependencies from ifs and menus.)* Default ======= - y Symbols selected by this symbol =============================== - \ :option:`USE_STM32_LL_RTC ` - \ :option:`USE_STM32_LL_PWR ` - \ :option:`USE_STM32_LL_RCC ` - \ :option:`USE_STM32_LL_EXTI ` Kconfig definitions =================== At ``/arm/st_stm32/common/Kconfig.defconfig.series:59`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:19`` → ``/kconfig/Kconfig.soc.defconfig:1`` → ``/arm/st_stm32/Kconfig.defconfig:3`` Menu path: (Top) .. code-block:: kconfig config COUNTER_RTC_STM32 bool default y depends on COUNTER && SOC_FAMILY_STM32 ---- At ``/counter/Kconfig.stm32_rtc:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``/Kconfig:64`` → ``/counter/Kconfig:29`` Menu path: (Top) → Device Drivers → Counter Drivers .. code-block:: kconfig menuconfig COUNTER_RTC_STM32 bool "STM32 Counter RTC driver" select USE_STM32_LL_RTC select USE_STM32_LL_PWR select USE_STM32_LL_RCC select USE_STM32_LL_EXTI depends on SOC_FAMILY_STM32 && COUNTER help Build RTC driver for STM32 SoCs. Tested on STM32 F0, F2, F3, F4, L1, L4, F7, G0, G4, H7 series *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*