Kconfig 623 B

123456789101112131415161718192021222324252627
  1. #
  2. # IIO imu drivers configuration
  3. #
  4. menu "Inertial measurement units"
  5. config ADIS16480
  6. tristate "Analog Devices ADIS16480 and similar IMU driver"
  7. depends on SPI
  8. select IIO_ADIS_LIB
  9. select IIO_ADIS_LIB_BUFFER if IIO_BUFFER
  10. help
  11. Say yes here to build support for Analog Devices ADIS16375, ADIS16480,
  12. ADIS16485, ADIS16488 inertial sensors.
  13. endmenu
  14. config IIO_ADIS_LIB
  15. tristate
  16. help
  17. A set of IO helper functions for the Analog Devices ADIS* device family.
  18. config IIO_ADIS_LIB_BUFFER
  19. bool
  20. select IIO_TRIGGERED_BUFFER
  21. help
  22. A set of buffer helper functions for the Analog Devices ADIS* device
  23. family.