24 lines
275 B
Plaintext
24 lines
275 B
Plaintext
|
|
/* SPDX-License-Identifier: Apache-2.0 */
|
||
|
|
|
||
|
|
/ {
|
||
|
|
aliases {
|
||
|
|
led0 = &led0;
|
||
|
|
};
|
||
|
|
|
||
|
|
leds {
|
||
|
|
compatible = "gpio-leds";
|
||
|
|
led0: led_0 {
|
||
|
|
gpios = <&gpio9 0 GPIO_ACTIVE_HIGH>;
|
||
|
|
label = "Green LED 0";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
&gpiote130 {
|
||
|
|
status = "okay";
|
||
|
|
};
|
||
|
|
|
||
|
|
&gpio9 {
|
||
|
|
status = "okay";
|
||
|
|
};
|