This PR adds support for BQ32002 RTC chip. Supported functionalities: * Time setting/reading * Alarm setting/reading * Calibration setting/reading * IRQ frequency configuration Tested on nRF52833-DK board. Signed-off-by: Marcin Lyda <elektromarcin@gmail.com>
11 lines
295 B
Plaintext
11 lines
295 B
Plaintext
# Copyright (c) 2025 Marcin Lyda <elektromarcin@gmail.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config RTC_BQ32002
|
|
bool "Texas Instruments BQ32002 Real-Time Clock driver"
|
|
default y
|
|
depends on DT_HAS_TI_BQ32002_ENABLED
|
|
select I2C
|
|
help
|
|
Enable Texas Instruments BQ32002 I2C RTC driver.
|