mrf24j40.txt 538 B

1234567891011121314151617181920
  1. * MRF24J40 IEEE 802.15.4 *
  2. Required properties:
  3. - compatible: should be "microchip,mrf24j40", "microchip,mrf24j40ma",
  4. or "microchip,mrf24j40mc" depends on your transceiver
  5. board
  6. - spi-max-frequency: maximal bus speed, should be set something under or equal
  7. 10000000
  8. - reg: the chipselect index
  9. - interrupts: the interrupt generated by the device.
  10. Example:
  11. mrf24j40ma@0 {
  12. compatible = "microchip,mrf24j40ma";
  13. spi-max-frequency = <8500000>;
  14. reg = <0>;
  15. interrupts = <19 8>;
  16. interrupt-parent = <&gpio3>;
  17. };