first commit for chrg

This commit is contained in:
wmano
2025-08-16 22:58:22 +08:00
commit 52a3ed5862
2306 changed files with 1021208 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
config RT_USING_RTC
bool "Using RTC device drivers"
default n
if RT_USING_RTC
config RT_USING_ALARM
bool "Using RTC alarm"
default n
if RT_USING_ALARM
config RT_ALARM_STACK_SIZE
int "stack size for alarm thread"
default 2048
config RT_ALARM_TIMESLICE
int "timeslice for alarm thread"
default 5
config RT_ALARM_PRIORITY
int "priority for alarm thread"
default 10
config RT_ALARM_USING_LOCAL_TIME
bool "Using local time for the alarm calculation"
default n
depends on RT_USING_ALARM
endif
config RT_USING_SOFT_RTC
bool "Using software simulation RTC device"
default n
endif