1# Copyright 2025 NXP 2# SPDX-License-Identifier: Apache-2.0 3 4config RTC_COUNTER 5 bool "Real Time Clock driver using counter API" 6 default y 7 depends on DT_HAS_ZEPHYR_RTC_COUNTER_ENABLED 8 select COUNTER 9 help 10 RTC driver applied for RTC device without broken-down time registers. 11 Wraps the counter API to provide RTC functionality. 12 Uses unix timestamp to convert between broken-down time and counter ticks. 13