Kconfig 349 B

1234567891011121314
  1. menuconfig RT_USING_HWTIMER
  2. bool "Using Hardware Timer device drivers"
  3. default n
  4. config RT_HWTIMER_ARM_ARCH
  5. bool "ARM ARCH Timer"
  6. depends on RT_USING_DM
  7. depends on RT_USING_HWTIMER
  8. depends on ARCH_ARM_CORTEX_A || ARCH_ARMV8
  9. default n
  10. if RT_USING_DM && RT_USING_HWTIMER
  11. osource "$(SOC_DM_HWTIMER_DIR)/Kconfig"
  12. endif