at86rf230.txt 831 B

123456789101112131415161718192021222324252627
  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. Non high-level
  9. can occur deadlocks while handling isr.
  10. Optional properties:
  11. - reset-gpio: GPIO spec for the rstn pin
  12. - sleep-gpio: GPIO spec for the slp_tr pin
  13. - xtal-trim: u8 value for fine tuning the internal capacitance
  14. arrays of xtal pins: 0 = +0 pF, 0xf = +4.5 pF
  15. Example:
  16. at86rf231@0 {
  17. compatible = "atmel,at86rf231";
  18. spi-max-frequency = <7500000>;
  19. reg = <0>;
  20. interrupts = <19 4>;
  21. interrupt-parent = <&gpio3>;
  22. xtal-trim = /bits/ 8 <0x06>;
  23. };