Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rbiasini committed Nov 14, 2019
1 parent 168461d commit df2ff04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.6.0
v1.6.1
4 changes: 2 additions & 2 deletions board/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ int get_health_pkt(void *dat) {
uint8_t car_harness_status_pkt;
uint8_t usb_power_mode_pkt;
uint8_t safety_mode_pkt;
uint8_t fault_pkt;
uint8_t fault_status_pkt;
} *health = dat;

health->voltage_pkt = adc_get_voltage();
Expand All @@ -183,7 +183,7 @@ int get_health_pkt(void *dat) {
health->car_harness_status_pkt = car_harness_status;
health->usb_power_mode_pkt = usb_power_mode;
health->safety_mode_pkt = (uint8_t)(current_safety_mode);
health->fault_pkt = 0U; // TODO: populate this field
health->fault_status_pkt = 0U; // TODO: populate this field

return sizeof(*health);
}
Expand Down

0 comments on commit df2ff04

Please sign in to comment.