21 lines · plain
1* MRF24J40 IEEE 802.15.4 *2 3Required properties:4 - compatible: should be "microchip,mrf24j40", "microchip,mrf24j40ma",5 or "microchip,mrf24j40mc" depends on your transceiver6 board7 - spi-max-frequency: maximal bus speed, should be set something under or equal8 100000009 - reg: the chipselect index10 - interrupts: the interrupt generated by the device.11 12Example:13 14 mrf24j40ma@0 {15 compatible = "microchip,mrf24j40ma";16 spi-max-frequency = <8500000>;17 reg = <0>;18 interrupts = <19 8>;19 interrupt-parent = <&gpio3>;20 };21