1config RT_USING_RTC
2    bool "Using RTC device drivers"
3    default n
4
5    if RT_USING_RTC
6        config RT_USING_ALARM
7            bool "Using RTC alarm"
8            default n
9
10        if RT_USING_ALARM
11            config RT_ALARM_STACK_SIZE
12                int "stack size for alarm thread"
13                default 2048
14
15            config RT_ALARM_TIMESLICE
16                int "timeslice for alarm thread"
17                default 5
18
19            config RT_ALARM_PRIORITY
20                int "priority for alarm thread"
21                default 10
22
23            config RT_ALARM_USING_LOCAL_TIME
24                bool "Using local time for the alarm calculation"
25                default n
26                depends on RT_USING_ALARM
27        endif
28
29        config RT_USING_SOFT_RTC
30            bool "Using software simulation RTC device"
31            default n
32    endif
33