afe4403.txt 853 B

123456789101112131415161718192021222324252627282930313233
  1. Texas Instruments AFE4403 Heart rate and Pulse Oximeter
  2. Required properties:
  3. - compatible : Should be "ti,afe4403".
  4. - reg : SPI chip select address of device.
  5. - tx-supply : Regulator supply to transmitting LEDs.
  6. - interrupts : The interrupt line the device ADC_RDY pin is
  7. connected to. For details refer to,
  8. ../../interrupt-controller/interrupts.txt.
  9. Optional properties:
  10. - reset-gpios : GPIO used to reset the device.
  11. For details refer to, ../../gpio/gpio.txt.
  12. For other required and optional properties of SPI slave nodes
  13. please refer to ../../spi/spi-bus.txt.
  14. Example:
  15. &spi0 {
  16. heart_mon@0 {
  17. compatible = "ti,afe4403";
  18. reg = <0>;
  19. spi-max-frequency = <10000000>;
  20. tx-supply = <&vbat>;
  21. interrupt-parent = <&gpio1>;
  22. interrupts = <28 IRQ_TYPE_EDGE_RISING>;
  23. reset-gpios = <&gpio1 16 GPIO_ACTIVE_LOW>;
  24. };
  25. };