mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-26 22:45:58 +00:00
Adds support for settings/getting RTC time and using alarm/update feature. The alarm option needs all fields to be set due to a hardware limitation. RTC shares the same interrupt with the watchdog. Thus shared interrupts must be enabled when WDT and RTC both need to trigger the ISR. Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
10 lines
219 B
Plaintext
10 lines
219 B
Plaintext
# Copyright 2023 Andriy Gelman
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config RTC_XMC4XXX
|
|
bool "XMC4xxx RTC driver"
|
|
default y
|
|
depends on DT_HAS_INFINEON_XMC4XXX_RTC_ENABLED
|
|
help
|
|
Build RTC driver for XMC4xxx SoCs.
|