Kconfig 682 B

1234567891011121314151617181920212223242526
  1. menu "ISO-ANSI C layer"
  2. menu "Timezone and Daylight Saving Time"
  3. config RT_LIBC_USING_LIGHT_TZ_DST
  4. bool "Enable lightweight timezone and daylight saving time"
  5. default y
  6. if RT_LIBC_USING_LIGHT_TZ_DST
  7. config RT_LIBC_TZ_DEFAULT_HOUR
  8. int "Set the default local timezone (hour)"
  9. range -12 12
  10. default 8
  11. config RT_LIBC_TZ_DEFAULT_MIN
  12. int "Set the default local timezone (minute)"
  13. range -59 59
  14. default 0
  15. config RT_LIBC_TZ_DEFAULT_SEC
  16. int "Set the default local timezone (second)"
  17. range -59 59
  18. default 0
  19. endif
  20. endmenu
  21. endmenu