1menu "ISO-ANSI C layer"
2
3menu "Timezone and Daylight Saving Time"
4    config RT_LIBC_USING_FULL_TZ_DST
5        bool "Enable fully version timezone and daylight saving time with database"
6        select PKG_USING_TZ_DATABASE # select timezone database software package
7        default n
8
9    config RT_LIBC_USING_LIGHT_TZ_DST
10        bool "Enable lightweight timezone and daylight saving time"
11        depends on !RT_LIBC_USING_FULL_TZ_DST
12        default y
13
14    if RT_LIBC_USING_LIGHT_TZ_DST
15        config RT_LIBC_TZ_DEFAULT_HOUR
16            int "Set the default local timezone (hour)"
17            range -12 12
18            default 8
19
20        config RT_LIBC_TZ_DEFAULT_MIN
21            int "Set the default local timezone (minute)"
22            range -59 59
23            default 0
24
25        config RT_LIBC_TZ_DEFAULT_SEC
26            int "Set the default local timezone (second)"
27            range -59 59
28            default 0
29    endif
30endmenu
31
32endmenu
33