diff --git a/include/motor-control/core/tasks/motion_controller_task.hpp b/include/motor-control/core/tasks/motion_controller_task.hpp index 17a5480b6..4abd21fe5 100644 --- a/include/motor-control/core/tasks/motion_controller_task.hpp +++ b/include/motor-control/core/tasks/motion_controller_task.hpp @@ -178,6 +178,7 @@ class MotionControllerMessageHandler { static_cast(m); driver_error_handled_flag.exchange(false); controller.clear_cancel_request(); + // send MotorDriverErrorCleared msg to host } auto driver_error_handled() -> bool { @@ -188,7 +189,7 @@ class MotionControllerMessageHandler { CanClient& can_client; UsageClient& usage_client; DriverClient& driver_client; - std::atomic driver_error_handled_flag = false; + std::atomic driver_error_handled_flag = false; // can get rid of this if indefinite interrupt trigger issue gets resolved }; /**