Kconfig 398 B

1234567891011121314151617181920212223242526
  1. menu "CIR Devices"
  2. config DRIVERS_CIR
  3. bool "enable CIR driver"
  4. default y
  5. menu "CIR option features"
  6. config DRIVERS_CIR_DEBUG
  7. bool "support CIR debug"
  8. select DRIVERS_CIR
  9. default n
  10. config DRIVERS_CIR_TEST
  11. bool "CIR test case"
  12. select DRIVERS_CIR
  13. default n
  14. config HAL_TEST_CIR
  15. bool "CIR TEST CASE"
  16. depends on DRIVERS_CIR
  17. default n
  18. endmenu
  19. endmenu