From 60b7cc1e20869bcbe5a8f5ac9adc009d196c887d Mon Sep 17 00:00:00 2001 From: pmoegenburg Date: Fri, 31 May 2024 14:28:39 -0400 Subject: [PATCH] fixed build issues stemming from removal of motor driver error surfacing branch --- gripper/firmware/interfaces_z_motor.cpp | 2 +- .../core/stepper_motor/motor_interrupt_handler.hpp | 6 ++---- include/pipettes/firmware/interfaces.hpp | 14 ++++++-------- include/pipettes/firmware/interfaces_g4.hpp | 14 ++++++-------- pipettes/firmware/interfaces.cpp | 10 ++++------ 5 files changed, 19 insertions(+), 27 deletions(-) diff --git a/gripper/firmware/interfaces_z_motor.cpp b/gripper/firmware/interfaces_z_motor.cpp index 381d0e55e..d74056de4 100644 --- a/gripper/firmware/interfaces_z_motor.cpp +++ b/gripper/firmware/interfaces_z_motor.cpp @@ -197,7 +197,7 @@ static motor_class::Motor z_motor{ */ static motor_handler::MotorInterruptHandler motor_interrupt( motor_queue, gripper_tasks::z_tasks::get_queues(), - gripper_tasks::z_tasks::get_queues(), motor_hardware_iface, stallcheck, + motor_hardware_iface, stallcheck, update_position_queue, gripper_tasks::get_main_queues()); static auto encoder_background_timer = diff --git a/include/motor-control/core/stepper_motor/motor_interrupt_handler.hpp b/include/motor-control/core/stepper_motor/motor_interrupt_handler.hpp index fc47b9023..5cdc44439 100644 --- a/include/motor-control/core/stepper_motor/motor_interrupt_handler.hpp +++ b/include/motor-control/core/stepper_motor/motor_interrupt_handler.hpp @@ -9,7 +9,6 @@ #include "motor-control/core/motor_messages.hpp" #include "motor-control/core/stall_check.hpp" #include "motor-control/core/tasks/move_status_reporter_task.hpp" -#include "motor-control/core/tasks/tmc_motor_driver_common.hpp" namespace motor_handler { @@ -95,7 +94,7 @@ struct SensorClientHelper { }; template