4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-31 11:20:27 +08:00

Merge pull request #2451 from balanceTWK/rtt_master

[components] 添加 RT_USING_ALARM 选项
This commit is contained in:
Bernard Xiong 2019-03-14 20:20:58 +08:00 committed by GitHub
commit 38ffaf806c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,22 +129,27 @@ config RT_USING_RTC
default n
if RT_USING_RTC
config RT_USING_SOFT_RTC
bool "Using software simulation RTC device"
default n
config RTC_SYNC_USING_NTP
bool "Using NTP auto sync RTC time"
depends on PKG_NETUTILS_NTP
default y
config RT_USING_ALARM
bool "Using RTC alarm"
default n
if RTC_SYNC_USING_NTP
config RTC_NTP_FIRST_SYNC_DELAY
int "NTP first sync delay time(second) for network connect"
default 30
config RTC_NTP_SYNC_PERIOD
int "NTP auto sync period(second)"
default 3600
endif
config RT_USING_SOFT_RTC
bool "Using software simulation RTC device"
default n
config RTC_SYNC_USING_NTP
bool "Using NTP auto sync RTC time"
depends on PKG_NETUTILS_NTP
default y
if RTC_SYNC_USING_NTP
config RTC_NTP_FIRST_SYNC_DELAY
int "NTP first sync delay time(second) for network connect"
default 30
config RTC_NTP_SYNC_PERIOD
int "NTP auto sync period(second)"
default 3600
endif
endif
config RT_USING_SDIO