Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #
  2. # 1-wire slaves configuration
  3. #
  4. menu "1-wire Slaves"
  5. depends on W1
  6. config W1_SLAVE_THERM
  7. tristate "Thermal family implementation"
  8. depends on W1
  9. help
  10. Say Y here if you want to connect 1-wire thermal sensors to your
  11. wire.
  12. config W1_SLAVE_SMEM
  13. tristate "Simple 64bit memory family implementation"
  14. depends on W1
  15. help
  16. Say Y here if you want to connect 1-wire
  17. simple 64bit memory rom(ds2401/ds2411/ds1990*) to your wire.
  18. config W1_SLAVE_DS2433
  19. tristate "4kb EEPROM family support (DS2433)"
  20. depends on W1
  21. help
  22. Say Y here if you want to use a 1-wire
  23. 4kb EEPROM family device (DS2433).
  24. config W1_SLAVE_DS2433_CRC
  25. bool "Protect DS2433 data with a CRC16"
  26. depends on W1_SLAVE_DS2433
  27. select CRC16
  28. help
  29. Say Y here to protect DS2433 data with a CRC16.
  30. Each block has 30 bytes of data and a two byte CRC16.
  31. Full block writes are only allowed if the CRC is valid.
  32. config W1_SLAVE_DS2760
  33. tristate "Dallas 2760 battery monitor chip (HP iPAQ & others)"
  34. depends on W1
  35. help
  36. If you enable this you will have the DS2760 battery monitor
  37. chip support.
  38. The battery monitor chip is used in many batteries/devices
  39. as the one who is responsible for charging/discharging/monitoring
  40. Li+ batteries.
  41. If you are unsure, say N.
  42. endmenu