Kconfig 690 B

123456789101112131415161718192021222324252627
  1. # SPDX-License-Identifier: GPL-2.0
  2. config BOSCH_BNO055
  3. tristate
  4. select IIO_BUFFER
  5. select IIO_TRIGGERED_BUFFER
  6. config BOSCH_BNO055_SERIAL
  7. tristate "Bosch BNO055 attached via UART"
  8. depends on SERIAL_DEV_BUS
  9. select BOSCH_BNO055
  10. help
  11. Enable this to support Bosch BNO055 IMUs attached via UART.
  12. This driver can also be built as a module. If so, the module will be
  13. called bno055_sl.
  14. config BOSCH_BNO055_I2C
  15. tristate "Bosch BNO055 attached via I2C bus"
  16. depends on I2C
  17. select REGMAP_I2C
  18. select BOSCH_BNO055
  19. help
  20. Enable this to support Bosch BNO055 IMUs attached via I2C bus.
  21. This driver can also be built as a module. If so, the module will be
  22. called bno055_i2c.