Kconfig 1.2 KB

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