Kconfig 333 B

12345678910111213141516171819202122232425
  1. #
  2. # W1 subsystem configuration
  3. #
  4. menu "1-Wire support"
  5. config W1
  6. bool "Enable 1-wire controllers support"
  7. default no
  8. depends on DM
  9. help
  10. Support for the Dallas 1-Wire bus.
  11. if W1
  12. config W1_GPIO
  13. bool "Enable 1-wire GPIO bitbanging"
  14. default no
  15. depends on DM_GPIO
  16. help
  17. Emulate a 1-wire bus using a GPIO.
  18. endif
  19. endmenu