at86rf230.txt 626 B

1234567891011121314151617181920212223
  1. * AT86RF230 IEEE 802.15.4 *
  2. Required properties:
  3. - compatible: should be "atmel,at86rf230", "atmel,at86rf231",
  4. "atmel,at86rf233" or "atmel,at86rf212"
  5. - spi-max-frequency: maximal bus speed, should be set to 7500000 depends
  6. sync or async operation mode
  7. - reg: the chipselect index
  8. - interrupts: the interrupt generated by the device
  9. Optional properties:
  10. - reset-gpio: GPIO spec for the rstn pin
  11. - sleep-gpio: GPIO spec for the slp_tr pin
  12. Example:
  13. at86rf231@0 {
  14. compatible = "atmel,at86rf231";
  15. spi-max-frequency = <7500000>;
  16. reg = <0>;
  17. interrupts = <19 1>;
  18. interrupt-parent = <&gpio3>;
  19. };