Skip to content

Commit 816d1e3

Browse files
committed
fix build errors
1 parent bc2a83e commit 816d1e3

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

FprimeZephyrReference/ReferenceDeployment/Top/ReferenceDeploymentTopology.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ void setupTopology(const TopologyState& state) {
8787
// for over-the-air communications.
8888
lora.start(state.loraDevice, Zephyr::TransmitState::DISABLED);
8989
comDriver.configure(state.uartDevice, state.baudRate);
90-
ina219Manager.configure(state.ina219SysDevice);
90+
ina219SysManager.configure(state.ina219SysDevice);
91+
ina219SolManager.configure(state.ina219SolDevice);
9192
}
9293

9394
void startRateGroups() {

FprimeZephyrReference/project/config/TlmPacketizerCfg.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <Fw/FPrimeBasicTypes.hpp>
1717

1818
namespace Svc {
19-
static const FwChanIdType MAX_PACKETIZER_PACKETS = 9;
19+
static const FwChanIdType MAX_PACKETIZER_PACKETS = 10;
2020
static const FwChanIdType TLMPACKETIZER_NUM_TLM_HASH_SLOTS =
2121
15; // !< Number of slots in the hash table.
2222
// Works best when set to about twice the number of components producing telemetry

boards/bronco_space/proves_flight_control_board_v5/proves_flight_control_board_v5.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,14 +159,14 @@ zephyr_udc0: &usbd {
159159
backup-switch-mode = "direct";
160160
label = "RV3028";
161161
};
162-
ina219Sys: ina219@40 {
162+
ina219Sys: ina219Sys {
163163
compatible = "ti,ina219";
164164
reg = <0x40>;
165165
shunt-milliohm = <2>;
166166
lsb-microamp = <100>;
167167
label = "INA219 sys";
168168
};
169-
ina219Sol: ina219@41 {
169+
ina219Sol: ina219Sol {
170170
compatible = "ti,ina219";
171171
reg = <0x41>;
172172
shunt-milliohm = <2>;

0 commit comments

Comments
 (0)