Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions boards/arm/atsamd20_xpro/atsamd20_xpro.dts
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
leds {
compatible = "gpio-leds";
yellow_led: led_0 {
gpios = <&porta 14 0>;
gpios = <&porta 14 GPIO_ACTIVE_LOW>;
label = "LED0";
};
};

buttons {
compatible = "gpio-keys";
user_button: button_0 {
gpios = <&porta 15 (GPIO_PUD_PULL_UP | GPIO_INT_ACTIVE_LOW)>;
gpios = <&porta 15 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
label = "SW0";
};
};
Expand Down
4 changes: 2 additions & 2 deletions boards/arm/atsamd21_xpro/atsamd21_xpro.dts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
leds {
compatible = "gpio-leds";
led0: led_0 {
gpios = <&portb 30 0>;
gpios = <&portb 30 GPIO_ACTIVE_LOW>;
label = "Yellow LED";
};
};

buttons {
compatible = "gpio-keys";
user_button: button_0 {
gpios = <&porta 15 (GPIO_PUD_PULL_UP | GPIO_INT_ACTIVE_LOW)>;
gpios = <&porta 15 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
label = "SW0";
};
};
Expand Down
4 changes: 2 additions & 2 deletions boards/arm/atsamr21_xpro/atsamr21_xpro.dts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
leds {
compatible = "gpio-leds";
led0: led_0 {
gpios = <&porta 19 0>;
gpios = <&porta 19 GPIO_ACTIVE_LOW>;
label = "Yellow LED";
};
};

buttons {
compatible = "gpio-keys";
user_button: button_0 {
gpios = <&porta 28 (GPIO_PUD_PULL_UP | GPIO_INT_ACTIVE_LOW)>;
gpios = <&porta 28 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
label = "SW0";
};
};
Expand Down
Loading