File tree Expand file tree Collapse file tree 4 files changed +1111
-0
lines changed Expand file tree Collapse file tree 4 files changed +1111
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ zephyr_library_sources_ifdef(CONFIG_RTC_PCF8563 rtc_pcf8563.c)
32
32
zephyr_library_sources_ifdef(CONFIG_RTC_RPI_PICO rtc_rpi_pico.c)
33
33
zephyr_library_sources_ifdef(CONFIG_RTC_RTS5912 rtc_rts5912.c)
34
34
zephyr_library_sources_ifdef(CONFIG_RTC_RV3028 rtc_rv3028.c)
35
+ zephyr_library_sources_ifdef(CONFIG_RTC_RV3032 rtc_rv3032.c)
35
36
zephyr_library_sources_ifdef(CONFIG_RTC_RV8263 rtc_rv8263.c)
36
37
zephyr_library_sources_ifdef(CONFIG_RTC_RV8803 rtc_rv8803.c)
37
38
zephyr_library_sources_ifdef(CONFIG_RTC_RX8130CE rtc_rx8130ce.c)
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ source "drivers/rtc/Kconfig.pcf8563"
62
62
source "drivers/rtc/Kconfig.rpi_pico"
63
63
source "drivers/rtc/Kconfig.rts5912"
64
64
source "drivers/rtc/Kconfig.rv3028"
65
+ source "drivers/rtc/Kconfig.rv3032"
65
66
source "drivers/rtc/Kconfig.rv8263"
66
67
source "drivers/rtc/Kconfig.rv8803"
67
68
source "drivers/rtc/Kconfig.rx8130ce"
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2025 Dipak Shetty
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ config RTC_RV3032
5
+ bool "Micro Crystal RV3032 Real-Time Clock Module"
6
+ default y
7
+ depends on DT_HAS_MICROCRYSTAL_RV3032_ENABLED
8
+ select I2C
9
+ help
10
+ Enable the Micro Crystal RV3032 I2C RTC driver.
You can’t perform that action at this time.
0 commit comments