Skip to content

Commit

Permalink
Changed read_pump_sens to correct CANID in monitor.c
Browse files Browse the repository at this point in the history
  • Loading branch information
bjackson312006 committed Jan 25, 2025
1 parent fe59815 commit c00889c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Src/monitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ void read_pump_sens(pdu_t *pdu)
// put fault stuff tomorrow
fault_data_t fault_data = { .id = PUMP_SENSORS_FAULT,
.severity = DEFCON5 };
can_msg_t msg = { .id = CANID_PDU_CURRENT, .len = 8, .data = { 0 } };
can_msg_t msg = { .id = CANID_PUMP_SENSORS, .len = 8, .data = { 0 } };

uint32_t pump_volts_int[2];

Expand Down

0 comments on commit c00889c

Please sign in to comment.