bmc150_magn.txt 538 B

1234567891011121314151617181920212223
  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. - interrupt-parent : phandle to the parent interrupt controller
  8. - interrupts : interrupt mapping for GPIO IRQ
  9. Example:
  10. bmc150_magn@12 {
  11. compatible = "bosch,bmc150_magn";
  12. reg = <0x12>;
  13. interrupt-parent = <&gpio1>;
  14. interrupts = <0 1>;
  15. };