Kconfig 765 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # BMI160 IMU driver
  3. #
  4. config BMI160
  5. tristate
  6. select IIO_BUFFER
  7. select IIO_TRIGGERED_BUFFER
  8. config BMI160_I2C
  9. tristate "Bosch BMI160 I2C driver"
  10. depends on I2C
  11. select BMI160
  12. select REGMAP_I2C
  13. help
  14. If you say yes here you get support for BMI160 IMU on I2C with
  15. accelerometer, gyroscope and external BMG160 magnetometer.
  16. This driver can also be built as a module. If so, the module will be
  17. called bmi160_i2c.
  18. config BMI160_SPI
  19. tristate "Bosch BMI160 SPI driver"
  20. depends on SPI
  21. select BMI160
  22. select REGMAP_SPI
  23. help
  24. If you say yes here you get support for BMI160 IMU on SPI with
  25. accelerometer, gyroscope and external BMG160 magnetometer.
  26. This driver can also be built as a module. If so, the module will be
  27. called bmi160_spi.