File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
motor-control/firmware/stepper_motor Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ void MotorHardware::activate_motor() {
21
21
// brake spec is < 1ms so this is plenty
22
22
motor_hardware_delay (20 );
23
23
gpio::reset (pins.ebrake .value ());
24
- // Brake spec is 50ms to engage/disengage
25
- motor_hardware_delay (100 );
24
+ // carriage z needs 80ms and gripper z needs 120, so 120 it is.
25
+ motor_hardware_delay (120 );
26
26
}
27
27
}
28
28
void MotorHardware::deactivate_motor () {
29
29
if (pins.ebrake .has_value ()) {
30
30
gpio::set (pins.ebrake .value ());
31
- // Brake spec is 50ms to engage/disengage
32
- motor_hardware_delay (100 );
31
+ // carriage z needs 80ms and gripper z needs 120, so 120 it is.
32
+ motor_hardware_delay (120 );
33
33
}
34
34
gpio::reset (pins.enable );
35
35
}
You can’t perform that action at this time.
0 commit comments