| 12345678910111213141516171819202122232425262728 |
- menuconfig RT_USING_CLOCK_TIME
- bool "Using unified clock_time subsystem"
- default n
- help
- Unified time subsystem that consolidates hwtimer, ktime, and cputime.
- Provides clock source, clock event, and high-resolution timer support.
- if RT_USING_CLOCK_TIME
- config RT_USING_CLOCK_HRTIMER
- bool "Enable high-resolution timer support"
- default y
- help
- Enable high-resolution software timers built on clock_time devices.
- config RT_USING_CLOCK_CPUTIME
- bool "Enable CPU time APIs"
- default y
- help
- Enable CPU time measurement and delay APIs.
- config RT_USING_CLOCK_BOOTTIME
- bool "Enable boottime APIs"
- default y
- help
- Enable system boottime (monotonic time since boot) APIs.
- endif
|