forgot to remove motor stop in on_halt, will be doine by flush queue
authorJim Morris <morris@wolfman.com>
Tue, 18 Nov 2014 23:28:27 +0000 (15:28 -0800)
committerJim Morris <morris@wolfman.com>
Tue, 18 Nov 2014 23:28:27 +0000 (15:28 -0800)
src/modules/tools/extruder/Extruder.cpp

index 80e4d40..9d0e02e 100644 (file)
@@ -98,8 +98,6 @@ void Extruder::on_halt(void *arg)
         // disable if multi extruder
         if(!this->single_config)
             this->enabled= false;
-        // stop moving if we are moving as the block queue flush won't do it for us
-        if(this->stepper_motor->is_moving()) this->stepper_motor->move(0, 0);
     }
 }