Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #
  2. # STMicroelectonics LIS3LV02D and similar accelerometers
  3. #
  4. config SENSORS_LIS3_SPI
  5. tristate "STMicroeletronics LIS3LV02Dx three-axis digital accelerometer (SPI)"
  6. depends on !ACPI && SPI_MASTER && INPUT
  7. select SENSORS_LIS3LV02D
  8. default n
  9. help
  10. This driver provides support for the LIS3LV02Dx accelerometer connected
  11. via SPI. The accelerometer data is readable via
  12. /sys/devices/platform/lis3lv02d.
  13. This driver also provides an absolute input class device, allowing
  14. the laptop to act as a pinball machine-esque joystick.
  15. This driver can also be built as modules. If so, the core module
  16. will be called lis3lv02d and a specific module for the SPI transport
  17. is called lis3lv02d_spi.
  18. config SENSORS_LIS3_I2C
  19. tristate "STMicroeletronics LIS3LV02Dx three-axis digital accelerometer (I2C)"
  20. depends on I2C && INPUT
  21. select SENSORS_LIS3LV02D
  22. default n
  23. help
  24. This driver provides support for the LIS3LV02Dx accelerometer connected
  25. via I2C. The accelerometer data is readable via
  26. /sys/devices/platform/lis3lv02d.
  27. This driver also provides an absolute input class device, allowing
  28. the device to act as a pinball machine-esque joystick.
  29. This driver can also be built as modules. If so, the core module
  30. will be called lis3lv02d and a specific module for the I2C transport
  31. is called lis3lv02d_i2c.