-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers: rtc: Add Micro Crystal RV-8803-C7 RTC driver
This PR adds support for Micro Crystal RV-8803-C7 RTC chip. Supported functionalities: * Update interrupt * Alarm interrupt * Time setting/reading * Alarm setting/reading * Aging offset calibration setting/reading * CLKOUT configuration Tested on nRF52833-DK using rtc_api test set. Signed-off-by: Marcin Lyda <[email protected]>
- Loading branch information
Showing
6 changed files
with
918 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copyright (c) 2024 Marcin Lyda <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config RTC_RV8803 | ||
bool "Micro Crystal RV8803 Extreme Low Power Real-Time Clock Module driver" | ||
default y | ||
depends on DT_HAS_MICROCRYSTAL_RV8803_ENABLED | ||
select I2C | ||
help | ||
Enable Micro Crystal RV8803 I2C RTC driver. |
Oops, something went wrong.