rhapsodyv / Marlin

Optimized firmware for RepRap 3D printers based on the Arduino platform.
http://marlinfw.org
GNU General Public License v3.0
82 stars 428 forks source link

trouble cancelling with octoprint #40

Closed nubbyless closed 3 years ago

nubbyless commented 3 years ago

trouble cancelling print with octoprint not sure if an octoprint or marlin issues it did work correctly with chitu firmware

Steps to Reproduce

  1. start print in octoprint
  2. cancel print in octoprint
  3. expected result octoprint cancels print and machine goes into stop mode
  4. result print does stop but the machine never goes fully into stop mode until i manually go through the menu and hit stop print
nubbyless commented 3 years ago

Discovered this is an octoprint issue not marlin sorry about that it worked with chitu because it had the fan gcode statement in there and with chitu when the fan stops it shuts down everything else safety mechanism i guess. I will post the fix anyway incase someone runs across this. I just needed to add the below gcode to the canceled print section in octoprint gcode scripts.

; disable motors M84 ;disable all heaters M140 S0 M104 S0 ;disable fan M106 S0