bmc150_magn.txt 472 B

123456789101112131415161718192021
  1. * Bosch BMC150 magnetometer sensor
  2. http://ae-bst.resource.bosch.com/media/products/dokumente/bmc150/BST-BMC150-DS000-04.pdf
  3. Required properties:
  4. - compatible : should be "bosch,bmc150_magn"
  5. - reg : the I2C address of the magnetometer
  6. Optional properties:
  7. - interrupts : interrupt mapping for GPIO IRQ
  8. Example:
  9. bmc150_magn@12 {
  10. compatible = "bosch,bmc150_magn";
  11. reg = <0x12>;
  12. interrupt-parent = <&gpio1>;
  13. interrupts = <0 1>;
  14. };