Kconfig 902 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 you
  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 you 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. endmenu