Kconfig 866 B

1234567891011121314151617181920212223242526272829303132
  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. config RT_ALARM_USING_LOCAL_TIME
  19. bool "Using local time for the alarm calculation"
  20. default n
  21. depends on RT_USING_ALARM
  22. endif
  23. config RT_USING_SOFT_RTC
  24. bool "Using software simulation RTC device"
  25. default n
  26. endif