pwm-ir-tx.txt 387 B

12345678910111213
  1. Device tree bindings for IR LED connected through pwm pin which is used as
  2. remote controller transmitter.
  3. Required properties:
  4. - compatible: should be "pwm-ir-tx".
  5. - pwms : PWM property to point to the PWM device (phandle)/port (id)
  6. and to specify the period time to be used: <&phandle id period_ns>;
  7. Example:
  8. irled {
  9. compatible = "pwm-ir-tx";
  10. pwms = <&pwm0 0 10000000>;
  11. };