Skip to content

Commit 6bce30c

Browse files
committed
appease linter
1 parent 2e45917 commit 6bce30c

File tree

5 files changed

+22
-2
lines changed

5 files changed

+22
-2
lines changed

FprimeZephyrReference/ReferenceDeployment/Top/ReferenceDeploymentTopology.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
#include <zephyr/drivers/gpio.h>
1515

1616
static const struct gpio_dt_spec ledGpio = GPIO_DT_SPEC_GET(DT_NODELABEL(led0), gpios);
17+
static const struct gpio_dt_spec burnwire0Gpio = GPIO_DT_SPEC_GET(DT_NODELABEL(burnwire0), gpios);
18+
static const struct gpio_dt_spec burnwire1Gpio = GPIO_DT_SPEC_GET(DT_NODELABEL(burnwire1), gpios);
1719

1820
// Allows easy reference to objects in FPP/autocoder required namespaces
1921
using namespace ReferenceDeployment;

boards/bronco_space/proves_flight_control_board_v5/proves_flight_control_board_v5.dtsi

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@
2424
gpios = <&gpio0 24 GPIO_ACTIVE_HIGH>;
2525
label = "User LED GPIO24";
2626
};
27+
burnwire0: burnwire0{
28+
gpios = <&gpio0 28 GPIO_ACTIVE_HIGH>;
29+
label = "burnwire 0";
30+
};
31+
burnwire1: burnwire1{
32+
gpios = <&gpio0 29 GPIO_ACTIVE_HIGH>;
33+
label = "burnwire 1";
34+
};
35+
2736
};
2837
};
2938

boards/bronco_space/proves_flight_control_board_v5d/proves_flight_control_board_v5d_rp2350a_m33.dts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,13 @@
2222
gpios = <&gpio0 23 GPIO_ACTIVE_HIGH>;
2323
label = "User LED GPIO23";
2424
};
25+
26+
&burnwire0 {
27+
gpios = <&gpio0 28 GPIO_ACTIVE_HIGH>;
28+
label = "burnwire 0";
29+
};
30+
31+
&burnwire1 {
32+
gpios = <&gpio0 29 GPIO_ACTIVE_HIGH>;
33+
label = "burnwire 1";
34+
};

pull_request_template.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-

settings.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ default_toolchain: zephyr
77
default_cmake_options: FPRIME_ENABLE_FRAMEWORK_UTS=OFF
88
FPRIME_ENABLE_AUTOCODER_UTS=OFF
99
BOARD_ROOT=.
10-
BOARD=proves_flight_control_board_v5c/rp2350a/m33
10+
BOARD=proves_flight_control_board_v5d/rp2350a/m33

0 commit comments

Comments
 (0)