Kconfig 686 B

123456789101112131415161718192021222324252627
  1. config RT_USING_RTC
  2. bool "Using RTC device drivers"
  3. default n
  4. if RT_USING_RTC
  5. config RT_USING_ALARM
  6. bool "Using RTC alarm"
  7. default n
  8. if RT_USING_ALARM
  9. config RT_ALARM_STACK_SIZE
  10. int "stack size for alarm thread"
  11. default 2048
  12. config RT_ALARM_TIMESLICE
  13. int "timeslice for alarm thread"
  14. default 5
  15. config RT_ALARM_PRIORITY
  16. int "priority for alarm thread"
  17. default 10
  18. endif
  19. config RT_USING_SOFT_RTC
  20. bool "Using software simulation RTC device"
  21. default n
  22. endif