eed23e8cb3
For now clock can be read and written. Clock can be set in full iso8601 time format, like 2023-12-24T12:45:56 or by just providing either data or time Alarms not accessible Signed-off-by: Kim Bøndergaard <kim.bondergaard@prevas.dk>
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
# Copyright (c) 2022 Bjarki Arge Andreasen
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig RTC
|
|
bool "Real-Time Clock (RTC) drivers"
|
|
help
|
|
Enable RTC driver configuration.
|
|
|
|
if RTC
|
|
|
|
module = RTC
|
|
module-str = rtc
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config RTC_INIT_PRIORITY
|
|
int "RTC init priority"
|
|
default KERNEL_INIT_PRIORITY_DEVICE
|
|
help
|
|
RTC device driver initialization priority.
|
|
|
|
config RTC_ALARM
|
|
bool "RTC driver alarm support"
|
|
help
|
|
This is an option which enables driver support for RTC alarms.
|
|
|
|
config RTC_UPDATE
|
|
bool "RTC driver update event callback support"
|
|
help
|
|
This is an option which enables driver support for the RTC
|
|
update event callback.
|
|
|
|
config RTC_CALIBRATION
|
|
bool "RTC driver clock calibration support"
|
|
help
|
|
This is an option which enables driver support for RTC clock
|
|
calibration.
|
|
|
|
config RTC_SHELL
|
|
bool "RTC Shell commands"
|
|
depends on SHELL
|
|
help
|
|
RTC Shell commands
|
|
|
|
source "drivers/rtc/Kconfig.emul"
|
|
source "drivers/rtc/Kconfig.pcf8523"
|
|
source "drivers/rtc/Kconfig.pcf8563"
|
|
source "drivers/rtc/Kconfig.mc146818"
|
|
source "drivers/rtc/Kconfig.stm32"
|
|
|
|
endif # RTC
|