Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #
  2. # Health sensors
  3. #
  4. # When adding new entries keep the list in alphabetical order
  5. menu "Health Sensors"
  6. menu "Heart Rate Monitors"
  7. config AFE4403
  8. tristate "TI AFE4403 Heart Rate Monitor"
  9. depends on SPI_MASTER
  10. select REGMAP_SPI
  11. select IIO_BUFFER
  12. select IIO_TRIGGERED_BUFFER
  13. help
  14. Say yes to choose the Texas Instruments AFE4403
  15. heart rate monitor and low-cost pulse oximeter.
  16. To compile this driver as a module, choose M here: the
  17. module will be called afe4403.
  18. config AFE4404
  19. tristate "TI AFE4404 heart rate and pulse oximeter sensor"
  20. depends on I2C
  21. select REGMAP_I2C
  22. select IIO_BUFFER
  23. select IIO_TRIGGERED_BUFFER
  24. help
  25. Say yes to choose the Texas Instruments AFE4404
  26. heart rate monitor and low-cost pulse oximeter.
  27. To compile this driver as a module, choose M here: the
  28. module will be called afe4404.
  29. config MAX30100
  30. tristate "MAX30100 heart rate and pulse oximeter sensor"
  31. depends on I2C
  32. select REGMAP_I2C
  33. select IIO_BUFFER
  34. select IIO_KFIFO_BUF
  35. help
  36. Say Y here to build I2C interface support for the Maxim
  37. MAX30100 heart rate, and pulse oximeter sensor.
  38. To compile this driver as a module, choose M here: the
  39. module will be called max30100.
  40. endmenu
  41. endmenu