Kconfig 918 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. menuconfig RT_USING_ADC
  2. bool "Using ADC device drivers"
  3. default n
  4. if RT_USING_DM && RT_USING_ADC
  5. osource "$(SOC_DM_ADC_DIR)/Kconfig"
  6. endif
  7. config RT_USING_DAC
  8. bool "Using DAC device drivers"
  9. default n
  10. config RT_USING_NULL
  11. bool "Using NULL device drivers"
  12. default n
  13. config RT_USING_ZERO
  14. bool "Using ZERO device drivers"
  15. default n
  16. config RT_USING_RANDOM
  17. bool "Using RANDOM device drivers"
  18. default n
  19. menuconfig RT_USING_PWM
  20. bool "Using PWM device drivers"
  21. default n
  22. if RT_USING_DM && RT_USING_PWM
  23. osource "$(SOC_DM_PWM_DIR)/Kconfig"
  24. endif
  25. config RT_USING_PULSE_ENCODER
  26. bool "Using PULSE ENCODER device drivers"
  27. default n
  28. config RT_USING_INPUT_CAPTURE
  29. bool "Using INPUT CAPTURE device drivers"
  30. default n
  31. if RT_USING_INPUT_CAPTURE
  32. config RT_INPUT_CAPTURE_RB_SIZE
  33. int "Set input capture ringbuffer size"
  34. default 100
  35. endif