Kconfig 754 B

12345678910111213141516171819202122232425262728293031323334353637
  1. config RT_USING_ADC
  2. bool "Using ADC device drivers"
  3. default n
  4. config RT_USING_DAC
  5. bool "Using DAC device drivers"
  6. default n
  7. config RT_USING_NULL
  8. bool "Using NULL device drivers"
  9. default n
  10. config RT_USING_ZERO
  11. bool "Using ZERO device drivers"
  12. default n
  13. config RT_USING_RANDOM
  14. bool "Using RANDOM device drivers"
  15. default n
  16. config RT_USING_PWM
  17. bool "Using PWM device drivers"
  18. default n
  19. config RT_USING_PULSE_ENCODER
  20. bool "Using PULSE ENCODER device drivers"
  21. default n
  22. config RT_USING_INPUT_CAPTURE
  23. bool "Using INPUT CAPTURE device drivers"
  24. default n
  25. if RT_USING_INPUT_CAPTURE
  26. config RT_INPUT_CAPTURE_RB_SIZE
  27. int "Set input capture ringbuffer size"
  28. default 100
  29. endif