Skip to content

Commit

Permalink
fix(motion-control): Don't clear stepper-ok in stop request (#813)
Browse files Browse the repository at this point in the history
* We don't need to clear the stepper ok field when we get a stop message.

* Ok i was wrong about how this worked. We don't want to leave the motor enable false we just want to turn the brake on for a bit then turn it back off to leave the motor enabled.
  • Loading branch information
ryanthecoder authored Nov 4, 2024
1 parent 744fb80 commit 5a5ca72
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ class MotionController {
if (hardware.is_timer_interrupt_running()) {
hardware.request_cancel();
}
disable_motor();
hardware.deactivate_motor();
hardware.activate_motor();
}

auto read_limit_switch() -> bool { return hardware.check_limit_switch(); }
Expand Down

0 comments on commit 5a5ca72

Please sign in to comment.