You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
332 B
15 lines
332 B
LED connected to GPIO
|
|
|
|
Required properties:
|
|
- compatible : should be "gpio-led".
|
|
- label : (optional) the label for this LED. If omitted, the label is
|
|
taken from the node name (excluding the unit address).
|
|
- gpios : should specify LED GPIO.
|
|
|
|
Example:
|
|
|
|
led@0 {
|
|
compatible = "gpio-led";
|
|
label = "hdd";
|
|
gpios = <&mcu_pio 0 1>;
|
|
};
|
|
|