Skip to content

Commit 44c5d99

Browse files
authored
Merge pull request #21 from Open-Source-Space-Foundation/board_radio_definition
works with radio in the v5d board
2 parents 8a8e2b3 + 8cb46ae commit 44c5d99

File tree

6 files changed

+47
-10
lines changed

6 files changed

+47
-10
lines changed

.github/pull_request_template.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Pull Request Title (e.g., Feature: Add user authentication)
2+
3+
## Description
4+
5+
<!-- Provide a clear and concise description of the changes being introduced in this pull request. Explain the "why" behind the changes, not just the "what." -->
6+
7+
## Related Issues/Tickets
8+
9+
<!-- Link any relevant issues, tasks, or user stories (e.g., Closes #123, Fixes #456). -->
10+
11+
## How Has This Been Tested?
12+
13+
<!-- Describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration. -->
14+
15+
- [ ] Unit tests
16+
- [ ] Integration tests
17+
- [ ] Z Tests
18+
- [ ] Manual testing (describe steps)
19+
20+
## Screenshots / Recordings (if applicable)
21+
22+
<!-- Provide screenshots or screen recordings that demonstrate the changes, especially for UI-related updates. -->
23+
24+
## Checklist
25+
26+
- [ ] Written detailed sdd with requirements, channels, ports, commands, telemetry defined and correctly formatted and spelled
27+
- [ ] Have written relevant integration tests and have documented them in the sdd
28+
- [ ] Have done a code review with
29+
- [ ] Have tested this PR on every supported board with correct board definitions
30+
31+
## Further Notes / Considerations

boards/bronco_space/proves_flight_control_board_v5/proves_flight_control_board_v5-pinctrl.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
};
88

99
group2 {
10-
pinmux = <SPI1_RX_P8>;
10+
pinmux = <SPI1_RX_P12>;
1111
input-enable;
1212
};
1313
};

boards/bronco_space/proves_flight_control_board_v5/proves_flight_control_board_v5.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
leds {
2222
compatible = "gpio-leds";
2323
led0: led0 {
24-
gpios = <&gpio0 24 GPIO_ACTIVE_HIGH>;
25-
label = "User LED GPIO24";
24+
gpios = <&gpio0 23 GPIO_ACTIVE_HIGH>;
25+
label = "Watchdog LED";
2626
};
2727
};
2828
};
@@ -91,7 +91,7 @@ zephyr_udc0: &usbd {
9191
compatible = "semtech,sx1276";
9292
reg = <0>;
9393
spi-max-frequency = <125000>;
94-
dio-gpios = <&gpio0 13 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>,<&gpio0 12 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>;
94+
dio-gpios = <&gpio0 14 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>,<&gpio0 13 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>;
9595
reset-gpios = <&gpio0 6 GPIO_ACTIVE_LOW>;
9696
power-amplifier-output = "pa-boost";
9797
label = "HOPE_RF";

boards/bronco_space/proves_flight_control_board_v5c/proves_flight_control_board_v5c_rp2350a_m33.dts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,15 @@
1717
#include <raspberrypi/rpi_pico/m33.dtsi>
1818

1919
#include "../proves_flight_control_board_v5/proves_flight_control_board_v5.dtsi"
20+
21+
// Configure the Watchdog LED
22+
&led0 {
23+
gpios = <&gpio0 24 GPIO_ACTIVE_HIGH>;
24+
};
25+
26+
// Configure the LoRa DIO pins
27+
&spi1 {
28+
sx1276@0 {
29+
dio-gpios = <&gpio0 13 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>,<&gpio0 12 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>;
30+
};
31+
};

boards/bronco_space/proves_flight_control_board_v5d/proves_flight_control_board_v5d_rp2350a_m33.dts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,3 @@
1717
#include <raspberrypi/rpi_pico/m33.dtsi>
1818

1919
#include "../proves_flight_control_board_v5/proves_flight_control_board_v5.dtsi"
20-
21-
&led0 {
22-
gpios = <&gpio0 23 GPIO_ACTIVE_HIGH>;
23-
label = "User LED GPIO23";
24-
};

pull_request_template.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)