Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 1 | * MRF24J40 IEEE 802.15.4 * |
| 2 | |
| 3 | Required properties: |
| 4 | - compatible: should be "microchip,mrf24j40", "microchip,mrf24j40ma", |
| 5 | or "microchip,mrf24j40mc" depends on your transceiver |
| 6 | board |
| 7 | - spi-max-frequency: maximal bus speed, should be set something under or equal |
| 8 | 10000000 |
| 9 | - reg: the chipselect index |
| 10 | - interrupts: the interrupt generated by the device. |
| 11 | |
| 12 | Example: |
| 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 | }; |