Initial commit

This commit is contained in:
domenico
2025-06-24 13:14:22 +02:00
commit 4002f145fc
9002 changed files with 1731834 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
/ {
aliases {
led-boot = &led_link4;
led-failsafe = &led_link4;
label-mac-device = &wifi;
};
leds {
compatible = "gpio-leds";
link1 {
label = "red:link1";
gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
};
link2 {
label = "orange:link2";
gpios = <&gpio 1 GPIO_ACTIVE_HIGH>;
};
link3 {
label = "green:link3";
gpios = <&gpio 11 GPIO_ACTIVE_HIGH>;
};
led_link4: link4 {
label = "green:link4";
gpios = <&gpio 7 GPIO_ACTIVE_HIGH>;
};
};
};