Skip to content

Commit

Permalink
build on teensy works
Browse files Browse the repository at this point in the history
  • Loading branch information
Comerm28 committed Sep 25, 2024
1 parent 7589dc2 commit 5cd26fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ void loop()
Serial.print("Current TC index: ");
Serial.println(static_cast<int>(torque_controller_mux.get_tc_mux_status().active_controller_mode));
Serial.print("Current TC error: ");
Serial.println(static_cast<int>(torque_controller_mux.get_tc_mux_status().current_error));
Serial.println(static_cast<int>(torque_controller_mux.get_tc_mux_status().active_error));
Serial.println();
Serial.println();
}
Expand Down Expand Up @@ -566,7 +566,7 @@ void tick_all_interfaces(const SysTick_s &current_system_tick)
a1.get().conversions[MCU15_BRAKE1_CHANNEL],
a1.get().conversions[MCU15_BRAKE2_CHANNEL],
pedals_system.getMechBrakeActiveThreshold(),
torque_controller_mux.get_tc_mux_status().current_error);
torque_controller_mux.get_tc_mux_status().active_error);
}

if (t.trigger50) // 50Hz
Expand Down

0 comments on commit 5cd26fb

Please sign in to comment.