File tree Expand file tree Collapse file tree 4 files changed +998
-0
lines changed Expand file tree Collapse file tree 4 files changed +998
-0
lines changed Original file line number Diff line number Diff line change @@ -20,4 +20,5 @@ zephyr_library_sources_ifdef(CONFIG_RTC_FAKE rtc_fake.c)
20
20
zephyr_library_sources_ifdef (CONFIG_RTC_SMARTBOND rtc_smartbond.c )
21
21
zephyr_library_sources_ifdef (CONFIG_RTC_ATMEL_SAM rtc_sam.c )
22
22
zephyr_library_sources_ifdef (CONFIG_RTC_RPI_PICO rtc_rpi_pico.c )
23
+ zephyr_library_sources_ifdef (CONFIG_RTC_RV3028 rtc_rv3028.c )
23
24
zephyr_library_sources_ifdef (CONFIG_RTC_NUMAKER rtc_numaker.c )
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ source "drivers/rtc/Kconfig.mc146818"
49
49
source "drivers/rtc/Kconfig.pcf8523"
50
50
source "drivers/rtc/Kconfig.pcf8563"
51
51
source "drivers/rtc/Kconfig.rpi_pico"
52
+ source "drivers/rtc/Kconfig.rv3028"
52
53
source "drivers/rtc/Kconfig.sam"
53
54
source "drivers/rtc/Kconfig.smartbond"
54
55
source "drivers/rtc/Kconfig.stm32"
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2024 ANITRA system s.r.o.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ config RTC_RV3028
5
+ bool "Micro Crystal RV3028 I2C extreme low power RTC driver"
6
+ default y
7
+ depends on DT_HAS_MICROCRYSTAL_RV3028_ENABLED
8
+ select I2C
9
+ help
10
+ Enable the Micro Crystal RV3028 I2C RTC driver.
You can’t perform that action at this time.
0 commit comments