Kconfig 925 B

1234567891011121314151617181920212223242526272829
  1. menu "Dallas's 1-wire bus"
  2. config W1
  3. tristate "Dallas's 1-wire support"
  4. ---help---
  5. Dallas' 1-wire bus is useful to connect slow 1-pin devices
  6. such as iButtons and thermal sensors.
  7. If you want W1 support, you should say Y here.
  8. This W1 support can also be built as a module. If so, the module
  9. will be called wire.ko.
  10. config W1_CON
  11. depends on CONNECTOR && W1
  12. bool "Userspace communication over connector"
  13. default y
  14. --- help ---
  15. This allows to communicate with userspace using connector [Documentation/connector].
  16. There are three types of messages between w1 core and userspace:
  17. 1. Events. They are generated each time new master or slave device found
  18. either due to automatic or requested search.
  19. 2. Userspace commands. Includes read/write and search/alarm search commands.
  20. 3. Replies to userspace commands.
  21. source drivers/w1/masters/Kconfig
  22. source drivers/w1/slaves/Kconfig
  23. endmenu