My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gcode.h 42KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * -----------------
  25. * G-Codes in Marlin
  26. * -----------------
  27. *
  28. * Helpful G-code references:
  29. * - https://marlinfw.org/meta/gcode
  30. * - https://reprap.org/wiki/G-code
  31. * - https://linuxcnc.org/docs/html/gcode.html
  32. *
  33. * Help to document Marlin's G-codes online:
  34. * - https://github.com/MarlinFirmware/MarlinDocumentation
  35. *
  36. * -----------------
  37. *
  38. * "G" Codes
  39. *
  40. * G0 -> G1
  41. * G1 - Coordinated Movement X Y Z E
  42. * G2 - CW ARC
  43. * G3 - CCW ARC
  44. * G4 - Dwell S<seconds> or P<milliseconds>
  45. * G5 - Cubic B-spline with XYZE destination and IJPQ offsets
  46. * G10 - Retract filament according to settings of M207 (Requires FWRETRACT)
  47. * G11 - Retract recover filament according to settings of M208 (Requires FWRETRACT)
  48. * G12 - Clean tool (Requires NOZZLE_CLEAN_FEATURE)
  49. * G17 - Select Plane XY (Requires CNC_WORKSPACE_PLANES)
  50. * G18 - Select Plane ZX (Requires CNC_WORKSPACE_PLANES)
  51. * G19 - Select Plane YZ (Requires CNC_WORKSPACE_PLANES)
  52. * G20 - Set input units to inches (Requires INCH_MODE_SUPPORT)
  53. * G21 - Set input units to millimeters (Requires INCH_MODE_SUPPORT)
  54. * G26 - Mesh Validation Pattern (Requires G26_MESH_VALIDATION)
  55. * G27 - Park Nozzle (Requires NOZZLE_PARK_FEATURE)
  56. * G28 - Home one or more axes
  57. * G29 - Start or continue the bed leveling probe procedure (Requires bed leveling)
  58. * G30 - Single Z probe, probes bed at X Y location (defaults to current XY location)
  59. * G31 - Dock sled (Z_PROBE_SLED only)
  60. * G32 - Undock sled (Z_PROBE_SLED only)
  61. * G33 - Delta Auto-Calibration (Requires DELTA_AUTO_CALIBRATION)
  62. * G34 - Z Stepper automatic alignment using probe: I<iterations> T<accuracy> A<amplification> (Requires Z_STEPPER_AUTO_ALIGN)
  63. * G35 - Read bed corners to help adjust bed screws: T<screw_thread> (Requires ASSISTED_TRAMMING)
  64. * G38 - Probe in any direction using the Z_MIN_PROBE (Requires G38_PROBE_TARGET)
  65. * G42 - Coordinated move to a mesh point (Requires MESH_BED_LEVELING, AUTO_BED_LEVELING_BLINEAR, or AUTO_BED_LEVELING_UBL)
  66. * G60 - Save current position. (Requires SAVED_POSITIONS)
  67. * G61 - Apply/restore saved coordinates. (Requires SAVED_POSITIONS)
  68. * G76 - Calibrate first layer temperature offsets. (Requires PTC_PROBE and PTC_BED)
  69. * G80 - Cancel current motion mode (Requires GCODE_MOTION_MODES)
  70. * G90 - Use Absolute Coordinates
  71. * G91 - Use Relative Coordinates
  72. * G92 - Set current position to coordinates given
  73. *
  74. * "M" Codes
  75. *
  76. * M0 - Unconditional stop - Wait for user to press a button on the LCD (Only if ULTRA_LCD is enabled)
  77. * M1 -> M0
  78. * M3 - Turn ON Laser | Spindle (clockwise), set Power | Speed. (Requires SPINDLE_FEATURE or LASER_FEATURE)
  79. * M4 - Turn ON Laser | Spindle (counter-clockwise), set Power | Speed. (Requires SPINDLE_FEATURE or LASER_FEATURE)
  80. * M5 - Turn OFF Laser | Spindle. (Requires SPINDLE_FEATURE or LASER_FEATURE)
  81. * M7 - Turn mist coolant ON. (Requires COOLANT_CONTROL)
  82. * M8 - Turn flood coolant ON. (Requires COOLANT_CONTROL)
  83. * M9 - Turn coolant OFF. (Requires COOLANT_CONTROL)
  84. * M10 - Turn Vacuum or Blower motor ON (Requires AIR_EVACUATION)
  85. * M11 - Turn Vacuum or Blower motor OFF (Requires AIR_EVACUATION)
  86. * M12 - Set up closed loop control system. (Requires EXTERNAL_CLOSED_LOOP_CONTROLLER)
  87. * M16 - Expected printer check. (Requires EXPECTED_PRINTER_CHECK)
  88. * M17 - Enable/Power all stepper motors
  89. * M18 - Disable all stepper motors; same as M84
  90. *
  91. *** Print from Media (SDSUPPORT) ***
  92. * M20 - List SD card. (Requires SDSUPPORT)
  93. * M21 - Init SD card. (Requires SDSUPPORT) With MULTI_VOLUME select a drive with `M21 Pn` / 'M21 S' / 'M21 U'.
  94. * M22 - Release SD card. (Requires SDSUPPORT)
  95. * M23 - Select SD file: "M23 /path/file.gco". (Requires SDSUPPORT)
  96. * M24 - Start/resume SD print. (Requires SDSUPPORT)
  97. * M25 - Pause SD print. (Requires SDSUPPORT)
  98. * M26 - Set SD position in bytes: "M26 S12345". (Requires SDSUPPORT)
  99. * M27 - Report SD print status. (Requires SDSUPPORT)
  100. * OR, with 'S<seconds>' set the SD status auto-report interval. (Requires AUTO_REPORT_SD_STATUS)
  101. * OR, with 'C' get the current filename.
  102. * M28 - Start SD write: "M28 /path/file.gco". (Requires SDSUPPORT)
  103. * M29 - Stop SD write. (Requires SDSUPPORT)
  104. * M30 - Delete file from SD: "M30 /path/file.gco" (Requires SDSUPPORT)
  105. * M31 - Report time since last M109 or SD card start to serial.
  106. * M32 - Select file and start SD print: "M32 [S<bytepos>] !/path/file.gco#". (Requires SDSUPPORT)
  107. * Use P to run other files as sub-programs: "M32 P !filename#"
  108. * The '#' is necessary when calling from within sd files, as it stops buffer prereading
  109. * M33 - Get the longname version of a path. (Requires LONG_FILENAME_HOST_SUPPORT)
  110. * M34 - Set SD Card sorting options. (Requires SDCARD_SORT_ALPHA)
  111. *
  112. * M42 - Change pin status via G-code: M42 P<pin> S<value>. LED pin assumed if P is omitted. (Requires DIRECT_PIN_CONTROL)
  113. * M43 - Display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins (Requires PINS_DEBUGGING)
  114. * M48 - Measure Z Probe repeatability: M48 P<points> X<pos> Y<pos> V<level> E<engage> L<legs> S<chizoid>. (Requires Z_MIN_PROBE_REPEATABILITY_TEST)
  115. *
  116. * M73 - Set the progress percentage. (Requires SET_PROGRESS_MANUALLY)
  117. * M75 - Start the print job timer.
  118. * M76 - Pause the print job timer.
  119. * M77 - Stop the print job timer.
  120. * M78 - Show statistical information about the print jobs. (Requires PRINTCOUNTER)
  121. *
  122. * M80 - Turn on Power Supply. (Requires PSU_CONTROL)
  123. * M81 - Turn off Power Supply. (Requires PSU_CONTROL)
  124. *
  125. * M82 - Set E codes absolute (default).
  126. * M83 - Set E codes relative while in Absolute (G90) mode.
  127. * M84 - Disable steppers until next move, or use S<seconds> to specify an idle
  128. * duration after which steppers should turn off. S0 disables the timeout.
  129. * M85 - Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
  130. * M92 - Set planner.settings.axis_steps_per_mm for one or more axes.
  131. *
  132. * M100 - Watch Free Memory (for debugging) (Requires M100_FREE_MEMORY_WATCHER)
  133. *
  134. * M102 - Configure Bed Distance Sensor. (Requires BD_SENSOR)
  135. *
  136. * M104 - Set extruder target temp.
  137. * M105 - Report current temperatures.
  138. * M106 - Set print fan speed.
  139. * M107 - Print fan off.
  140. * M108 - Break out of heating loops (M109, M190, M303). With no controller, breaks out of M0/M1. (Requires EMERGENCY_PARSER)
  141. * M109 - S<temp> Wait for extruder current temp to reach target temp. ** Wait only when heating! **
  142. * R<temp> Wait for extruder current temp to reach target temp. ** Wait for heating or cooling. **
  143. * If AUTOTEMP is enabled, S<mintemp> B<maxtemp> F<factor>. Exit autotemp by any M109 without F
  144. *
  145. * M110 - Set the current line number. (Used by host printing)
  146. * M111 - Set debug flags: "M111 S<flagbits>". See flag bits defined in enum.h.
  147. * M112 - Full Shutdown.
  148. *
  149. * M113 - Get or set the timeout interval for Host Keepalive "busy" messages. (Requires HOST_KEEPALIVE_FEATURE)
  150. * M114 - Report current position.
  151. * M115 - Report capabilities. (Extended capabilities requires EXTENDED_CAPABILITIES_REPORT)
  152. * M117 - Display a message on the controller screen. (Requires an LCD)
  153. * M118 - Display a message in the host console.
  154. *
  155. * M119 - Report endstops status.
  156. * M120 - Enable endstops detection.
  157. * M121 - Disable endstops detection.
  158. *
  159. * M122 - Debug stepper (Requires at least one _DRIVER_TYPE defined as TMC2130/2160/5130/5160/2208/2209/2660)
  160. * M123 - Report fan tachometers. (Requires En_FAN_TACHO_PIN) Optionally set auto-report interval. (Requires AUTO_REPORT_FANS)
  161. * M125 - Save current position and move to filament change position. (Requires PARK_HEAD_ON_PAUSE)
  162. *
  163. * M126 - Solenoid Air Valve Open. (Requires BARICUDA)
  164. * M127 - Solenoid Air Valve Closed. (Requires BARICUDA)
  165. * M128 - EtoP Open. (Requires BARICUDA)
  166. * M129 - EtoP Closed. (Requires BARICUDA)
  167. *
  168. * M140 - Set bed target temp. S<temp>
  169. * M141 - Set heated chamber target temp. S<temp> (Requires a chamber heater)
  170. * M143 - Set cooler target temp. S<temp> (Requires a laser cooling device)
  171. * M145 - Set heatup values for materials on the LCD. H<hotend> B<bed> F<fan speed> for S<material> (0=PLA, 1=ABS)
  172. * M149 - Set temperature units. (Requires TEMPERATURE_UNITS_SUPPORT)
  173. * M150 - Set Status LED Color as R<red> U<green> B<blue> W<white> P<bright>. Values 0-255. (Requires BLINKM, RGB_LED, RGBW_LED, NEOPIXEL_LED, PCA9533, or PCA9632).
  174. * M154 - Auto-report position with interval of S<seconds>. (Requires AUTO_REPORT_POSITION)
  175. * M155 - Auto-report temperatures with interval of S<seconds>. (Requires AUTO_REPORT_TEMPERATURES)
  176. * M163 - Set a single proportion for a mixing extruder. (Requires MIXING_EXTRUDER)
  177. * M164 - Commit the mix and save to a virtual tool (current, or as specified by 'S'). (Requires MIXING_EXTRUDER)
  178. * M165 - Set the mix for the mixing extruder (and current virtual tool) with parameters ABCDHI. (Requires MIXING_EXTRUDER and DIRECT_MIXING_IN_G1)
  179. * M166 - Set the Gradient Mix for the mixing extruder. (Requires GRADIENT_MIX)
  180. * M190 - Set bed target temperature and wait. R<temp> Set target temperature and wait. S<temp> Set, but only wait when heating. (Requires TEMP_SENSOR_BED)
  181. * M192 - Wait for probe to reach target temperature. (Requires TEMP_SENSOR_PROBE)
  182. * M193 - R<temp> Wait for cooler to reach target temp. ** Wait for cooling. **
  183. * M200 - Set filament diameter, D<diameter>, setting E axis units to cubic. (Use S0 to revert to linear units.)
  184. * M201 - Set max acceleration in units/s^2 for print moves: "M201 X<accel> Y<accel> Z<accel> E<accel>"
  185. * M202 - Set max acceleration in units/s^2 for travel moves: "M202 X<accel> Y<accel> Z<accel> E<accel>" ** UNUSED IN MARLIN! **
  186. * M203 - Set maximum feedrate: "M203 X<fr> Y<fr> Z<fr> E<fr>" in units/sec.
  187. * M204 - Set default acceleration in units/sec^2: P<printing> R<extruder_only> T<travel>
  188. * M205 - Set advanced settings. Current units apply:
  189. S<print> T<travel> minimum speeds
  190. B<minimum segment time>
  191. X<max X jerk>, Y<max Y jerk>, Z<max Z jerk>, E<max E jerk>
  192. * M206 - Set additional homing offset. (Disabled by NO_WORKSPACE_OFFSETS or DELTA)
  193. * M207 - Set Retract Length: S<length>, Feedrate: F<units/min>, and Z lift: Z<distance>. (Requires FWRETRACT)
  194. * M208 - Set Recover (unretract) Additional (!) Length: S<length> and Feedrate: F<units/min>. (Requires FWRETRACT)
  195. * M209 - Turn Automatic Retract Detection on/off: S<0|1> (For slicers that don't support G10/11). (Requires FWRETRACT_AUTORETRACT)
  196. Every normal extrude-only move will be classified as retract depending on the direction.
  197. * M211 - Enable, Disable, and/or Report software endstops: S<0|1> (Requires MIN_SOFTWARE_ENDSTOPS or MAX_SOFTWARE_ENDSTOPS)
  198. * M217 - Set filament swap parameters: "M217 S<length> P<feedrate> R<feedrate>". (Requires SINGLENOZZLE)
  199. * M218 - Set/get a tool offset: "M218 T<index> X<offset> Y<offset>". (Requires 2 or more extruders)
  200. * M220 - Set Feedrate Percentage: "M220 S<percent>" (i.e., "FR" on the LCD)
  201. * Use "M220 B" to back up the Feedrate Percentage and "M220 R" to restore it. (Requires an MMU_MODEL version 2 or 2S)
  202. * M221 - Set Flow Percentage: "M221 S<percent>" (Requires an extruder)
  203. * M226 - Wait until a pin is in a given state: "M226 P<pin> S<state>" (Requires DIRECT_PIN_CONTROL)
  204. * M240 - Trigger a camera to take a photograph. (Requires PHOTO_GCODE)
  205. * M250 - Set LCD contrast: "M250 C<contrast>" (0-63). (Requires LCD support)
  206. * M255 - Set LCD sleep time: "M255 S<minutes>" (0-99). (Requires an LCD with brightness or sleep/wake)
  207. * M256 - Set LCD brightness: "M256 B<brightness>" (0-255). (Requires an LCD with brightness control)
  208. * M260 - i2c Send Data (Requires EXPERIMENTAL_I2CBUS)
  209. * M261 - i2c Request Data (Requires EXPERIMENTAL_I2CBUS)
  210. * M280 - Set servo position absolute: "M280 P<index> S<angle|µs>". (Requires servos)
  211. * M281 - Set servo min|max position: "M281 P<index> L<min> U<max>". (Requires EDITABLE_SERVO_ANGLES)
  212. * M282 - Detach servo: "M282 P<index>". (Requires SERVO_DETACH_GCODE)
  213. * M290 - Babystepping (Requires BABYSTEPPING)
  214. * M300 - Play beep sound S<frequency Hz> P<duration ms>
  215. * M301 - Set PID parameters P I and D. (Requires PIDTEMP)
  216. * M302 - Allow cold extrudes, or set the minimum extrude S<temperature>. (Requires PREVENT_COLD_EXTRUSION)
  217. * M303 - PID relay autotune S<temperature> sets the target temperature. Default 150C. (Requires PIDTEMP)
  218. * M304 - Set bed PID parameters P I and D. (Requires PIDTEMPBED)
  219. * M305 - Set user thermistor parameters R T and P. (Requires TEMP_SENSOR_x 1000)
  220. * M306 - MPC autotune. (Requires MPCTEMP)
  221. * M309 - Set chamber PID parameters P I and D. (Requires PIDTEMPCHAMBER)
  222. * M350 - Set microstepping mode. (Requires digital microstepping pins.)
  223. * M351 - Toggle MS1 MS2 pins directly. (Requires digital microstepping pins.)
  224. * M355 - Set Case Light on/off and set brightness. (Requires CASE_LIGHT_PIN)
  225. * M380 - Activate solenoid on active tool (Requires EXT_SOLENOID) or the tool specified by 'S' (Requires MANUAL_SOLENOID_CONTROL).
  226. * M381 - Disable solenoids on all tools (Requires EXT_SOLENOID) or the tool specified by 'S' (Requires MANUAL_SOLENOID_CONTROL).
  227. * M400 - Finish all moves.
  228. * M401 - Deploy and activate Z probe. (Requires a probe)
  229. * M402 - Deactivate and stow Z probe. (Requires a probe)
  230. * M403 - Set filament type for PRUSA MMU2
  231. * M404 - Display or set the Nominal Filament Width: "W<diameter>". (Requires FILAMENT_WIDTH_SENSOR)
  232. * M405 - Enable Filament Sensor flow control. "M405 D<delay_cm>". (Requires FILAMENT_WIDTH_SENSOR)
  233. * M406 - Disable Filament Sensor flow control. (Requires FILAMENT_WIDTH_SENSOR)
  234. * M407 - Display measured filament diameter in millimeters. (Requires FILAMENT_WIDTH_SENSOR)
  235. * M410 - Quickstop. Abort all planned moves.
  236. * M412 - Enable / Disable Filament Runout Detection. (Requires FILAMENT_RUNOUT_SENSOR)
  237. * M413 - Enable / Disable Power-Loss Recovery. (Requires POWER_LOSS_RECOVERY)
  238. * M414 - Set language by index. (Requires LCD_LANGUAGE_2...)
  239. * M420 - Enable/Disable Leveling (with current values) S1=enable S0=disable (Requires MESH_BED_LEVELING or ABL)
  240. * M421 - Set a single Z coordinate in the Mesh Leveling grid. X<units> Y<units> Z<units> (Requires MESH_BED_LEVELING, AUTO_BED_LEVELING_BILINEAR, or AUTO_BED_LEVELING_UBL)
  241. * M422 - Set Z Stepper automatic alignment position using probe. X<units> Y<units> A<axis> (Requires Z_STEPPER_AUTO_ALIGN)
  242. * M425 - Enable/Disable and tune backlash correction. (Requires BACKLASH_COMPENSATION and BACKLASH_GCODE)
  243. * M428 - Set the home_offset based on the current_position. Nearest edge applies. (Disabled by NO_WORKSPACE_OFFSETS or DELTA)
  244. * M430 - Read the system current, voltage, and power (Requires POWER_MONITOR_CURRENT, POWER_MONITOR_VOLTAGE, or POWER_MONITOR_FIXED_VOLTAGE)
  245. * M486 - Identify and cancel objects. (Requires CANCEL_OBJECTS)
  246. * M500 - Store parameters in EEPROM. (Requires EEPROM_SETTINGS)
  247. * M501 - Restore parameters from EEPROM. (Requires EEPROM_SETTINGS)
  248. * M502 - Revert to the default "factory settings". ** Does not write them to EEPROM! **
  249. * M503 - Print the current settings (in memory): "M503 S<verbose>". S0 specifies compact output.
  250. * M504 - Validate EEPROM contents. (Requires EEPROM_SETTINGS)
  251. * M510 - Lock Printer (Requires PASSWORD_FEATURE)
  252. * M511 - Unlock Printer (Requires PASSWORD_UNLOCK_GCODE)
  253. * M512 - Set/Change/Remove Password (Requires PASSWORD_CHANGE_GCODE)
  254. * M524 - Abort the current SD print job started with M24. (Requires SDSUPPORT)
  255. * M540 - Enable/disable SD card abort on endstop hit: "M540 S<state>". (Requires SD_ABORT_ON_ENDSTOP_HIT)
  256. * M552 - Get or set IP address. Enable/disable network interface. (Requires enabled Ethernet port)
  257. * M553 - Get or set IP netmask. (Requires enabled Ethernet port)
  258. * M554 - Get or set IP gateway. (Requires enabled Ethernet port)
  259. * M569 - Enable stealthChop on an axis. (Requires at least one _DRIVER_TYPE to be TMC2130/2160/2208/2209/5130/5160)
  260. * M575 - Change the serial baud rate. (Requires BAUD_RATE_GCODE)
  261. * M593 - Get or set input shaping parameters. (Requires INPUT_SHAPING)
  262. * M600 - Pause for filament change: "M600 X<pos> Y<pos> Z<raise> E<first_retract> L<later_retract>". (Requires ADVANCED_PAUSE_FEATURE)
  263. * M603 - Configure filament change: "M603 T<tool> U<unload_length> L<load_length>". (Requires ADVANCED_PAUSE_FEATURE)
  264. * M605 - Set Dual X-Carriage movement mode: "M605 S<mode> [X<x_offset>] [R<temp_offset>]". (Requires DUAL_X_CARRIAGE)
  265. * M665 - Set delta configurations: "M665 H<delta height> L<diagonal rod> R<delta radius> S<segments/s> B<calibration radius> X<Alpha angle trim> Y<Beta angle trim> Z<Gamma angle trim> (Requires DELTA)
  266. * Set SCARA configurations: "M665 S<segments-per-second> P<theta-psi-offset> T<theta-offset> Z<z-offset> (Requires MORGAN_SCARA or MP_SCARA)
  267. * Set Polargraph draw area and belt length: "M665 S<segments-per-second> L<draw-area-left> R<draw-area-right> T<draw-area-top> B<draw-area-bottom> H<max-belt-length>"
  268. * M666 - Set/get offsets for delta (Requires DELTA) or dual endstops. (Requires [XYZ]_DUAL_ENDSTOPS)
  269. * M672 - Set/Reset Duet Smart Effector's sensitivity. (Requires DUET_SMART_EFFECTOR and SMART_EFFECTOR_MOD_PIN)
  270. * M701 - Load filament (Requires FILAMENT_LOAD_UNLOAD_GCODES)
  271. * M702 - Unload filament (Requires FILAMENT_LOAD_UNLOAD_GCODES)
  272. * M808 - Set or Goto a Repeat Marker (Requires GCODE_REPEAT_MARKERS)
  273. * M810-M819 - Define/execute a G-code macro (Requires GCODE_MACROS)
  274. * M851 - Set Z probe's XYZ offsets in current units. (Negative values: X=left, Y=front, Z=below)
  275. * M852 - Set skew factors: "M852 [I<xy>] [J<xz>] [K<yz>]". (Requires SKEW_CORRECTION_GCODE, plus SKEW_CORRECTION_FOR_Z for IJ)
  276. *
  277. *** I2C_POSITION_ENCODERS ***
  278. * M860 - Report the position of position encoder modules.
  279. * M861 - Report the status of position encoder modules.
  280. * M862 - Perform an axis continuity test for position encoder modules.
  281. * M863 - Perform steps-per-mm calibration for position encoder modules.
  282. * M864 - Change position encoder module I2C address.
  283. * M865 - Check position encoder module firmware version.
  284. * M866 - Report or reset position encoder module error count.
  285. * M867 - Enable/disable or toggle error correction for position encoder modules.
  286. * M868 - Report or set position encoder module error correction threshold.
  287. * M869 - Report position encoder module error.
  288. *
  289. * M871 - Print/reset/clear first layer temperature offset values. (Requires PTC_PROBE, PTC_BED, or PTC_HOTEND)
  290. * M876 - Handle Prompt Response. (Requires HOST_PROMPT_SUPPORT and not EMERGENCY_PARSER)
  291. * M900 - Get or Set Linear Advance K-factor. (Requires LIN_ADVANCE)
  292. * M906 - Set or get motor current in milliamps using axis codes XYZE, etc. Report values if no axis codes given. (Requires at least one _DRIVER_TYPE defined as TMC2130/2160/5130/5160/2208/2209/2660)
  293. * M907 - Set digital trimpot motor current using axis codes. (Requires a board with digital trimpots)
  294. * M908 - Control digital trimpot directly. (Requires HAS_MOTOR_CURRENT_DAC or DIGIPOTSS_PIN)
  295. * M909 - Print digipot/DAC current value. (Requires HAS_MOTOR_CURRENT_DAC)
  296. * M910 - Commit digipot/DAC value to external EEPROM via I2C. (Requires HAS_MOTOR_CURRENT_DAC)
  297. * M911 - Report stepper driver overtemperature pre-warn condition. (Requires at least one _DRIVER_TYPE defined as TMC2130/2160/5130/5160/2208/2209/2660)
  298. * M912 - Clear stepper driver overtemperature pre-warn condition flag. (Requires at least one _DRIVER_TYPE defined as TMC2130/2160/5130/5160/2208/2209/2660)
  299. * M913 - Set HYBRID_THRESHOLD speed. (Requires HYBRID_THRESHOLD)
  300. * M914 - Set StallGuard sensitivity. (Requires SENSORLESS_HOMING or SENSORLESS_PROBING)
  301. * M919 - Get or Set motor Chopper Times (time_off, hysteresis_end, hysteresis_start) using axis codes XYZE, etc. If no parameters are given, report. (Requires at least one _DRIVER_TYPE defined as TMC2130/2160/5130/5160/2208/2209/2660)
  302. * M951 - Set Magnetic Parking Extruder parameters. (Requires MAGNETIC_PARKING_EXTRUDER)
  303. * M3426 - Read MCP3426 ADC over I2C. (Requires HAS_MCP3426_ADC)
  304. * M7219 - Control Max7219 Matrix LEDs. (Requires MAX7219_GCODE)
  305. *
  306. *** SCARA ***
  307. * M360 - SCARA calibration: Move to cal-position ThetaA (0 deg calibration)
  308. * M361 - SCARA calibration: Move to cal-position ThetaB (90 deg calibration - steps per degree)
  309. * M362 - SCARA calibration: Move to cal-position PsiA (0 deg calibration)
  310. * M363 - SCARA calibration: Move to cal-position PsiB (90 deg calibration - steps per degree)
  311. * M364 - SCARA calibration: Move to cal-position PSIC (90 deg to Theta calibration position)
  312. *
  313. *** Custom codes (can be changed to suit future G-code standards) ***
  314. * G425 - Calibrate using a conductive object. (Requires CALIBRATION_GCODE)
  315. * M928 - Start SD logging: "M928 filename.gco". Stop with M29. (Requires SDSUPPORT)
  316. * M993 - Backup SPI Flash to SD
  317. * M994 - Load a Backup from SD to SPI Flash
  318. * M995 - Touch screen calibration for TFT display
  319. * M997 - Perform in-application firmware update
  320. * M999 - Restart after being stopped by error
  321. *
  322. * D... - Custom Development G-code. Add hooks to 'gcode_D.cpp' for developers to test features. (Requires MARLIN_DEV_MODE)
  323. * D576 - Set buffer monitoring options. (Requires BUFFER_MONITORING)
  324. *
  325. *** "T" Codes ***
  326. *
  327. * T0-T3 - Select an extruder (tool) by index: "T<n> F<units/min>"
  328. */
  329. #include "../inc/MarlinConfig.h"
  330. #include "parser.h"
  331. #if ENABLED(I2C_POSITION_ENCODERS)
  332. #include "../feature/encoder_i2c.h"
  333. #endif
  334. #if IS_SCARA || defined(G0_FEEDRATE)
  335. #define HAS_FAST_MOVES 1
  336. #endif
  337. enum AxisRelative : uint8_t {
  338. LOGICAL_AXIS_LIST(REL_E, REL_X, REL_Y, REL_Z, REL_I, REL_J, REL_K, REL_U, REL_V, REL_W)
  339. #if HAS_EXTRUDERS
  340. , E_MODE_ABS, E_MODE_REL
  341. #endif
  342. };
  343. extern const char G28_STR[];
  344. class GcodeSuite {
  345. public:
  346. static axis_bits_t axis_relative;
  347. static bool axis_is_relative(const AxisEnum a) {
  348. #if HAS_EXTRUDERS
  349. if (a == E_AXIS) {
  350. if (TEST(axis_relative, E_MODE_REL)) return true;
  351. if (TEST(axis_relative, E_MODE_ABS)) return false;
  352. }
  353. #endif
  354. return TEST(axis_relative, a);
  355. }
  356. static void set_relative_mode(const bool rel) {
  357. axis_relative = rel ? (0 LOGICAL_AXIS_GANG(
  358. | _BV(REL_E),
  359. | _BV(REL_X), | _BV(REL_Y), | _BV(REL_Z),
  360. | _BV(REL_I), | _BV(REL_J), | _BV(REL_K),
  361. | _BV(REL_U), | _BV(REL_V), | _BV(REL_W)
  362. )) : 0;
  363. }
  364. #if HAS_EXTRUDERS
  365. static void set_e_relative() {
  366. CBI(axis_relative, E_MODE_ABS);
  367. SBI(axis_relative, E_MODE_REL);
  368. }
  369. static void set_e_absolute() {
  370. CBI(axis_relative, E_MODE_REL);
  371. SBI(axis_relative, E_MODE_ABS);
  372. }
  373. #endif
  374. #if ENABLED(CNC_WORKSPACE_PLANES)
  375. /**
  376. * Workspace planes only apply to G2/G3 moves
  377. * (and "canned cycles" - not a current feature)
  378. */
  379. enum WorkspacePlane : char { PLANE_XY, PLANE_ZX, PLANE_YZ };
  380. static WorkspacePlane workspace_plane;
  381. #endif
  382. #define MAX_COORDINATE_SYSTEMS 9
  383. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  384. static int8_t active_coordinate_system;
  385. static xyz_pos_t coordinate_system[MAX_COORDINATE_SYSTEMS];
  386. static bool select_coordinate_system(const int8_t _new);
  387. #endif
  388. static millis_t previous_move_ms, max_inactive_time;
  389. FORCE_INLINE static bool stepper_max_timed_out(const millis_t ms=millis()) {
  390. return max_inactive_time && ELAPSED(ms, previous_move_ms + max_inactive_time);
  391. }
  392. FORCE_INLINE static void reset_stepper_timeout(const millis_t ms=millis()) { previous_move_ms = ms; }
  393. #if HAS_DISABLE_INACTIVE_AXIS
  394. static millis_t stepper_inactive_time;
  395. FORCE_INLINE static bool stepper_inactive_timeout(const millis_t ms=millis()) {
  396. return ELAPSED(ms, previous_move_ms + stepper_inactive_time);
  397. }
  398. #else
  399. static bool stepper_inactive_timeout(const millis_t) { return false; }
  400. #endif
  401. static void report_echo_start(const bool forReplay);
  402. static void report_heading(const bool forReplay, FSTR_P const fstr, const bool eol=true);
  403. static void report_heading_etc(const bool forReplay, FSTR_P const fstr, const bool eol=true) {
  404. report_heading(forReplay, fstr, eol);
  405. report_echo_start(forReplay);
  406. }
  407. static void say_units();
  408. static int8_t get_target_extruder_from_command();
  409. static int8_t get_target_e_stepper_from_command(const int8_t dval=-1);
  410. static void get_destination_from_command();
  411. static void process_parsed_command(const bool no_ok=false);
  412. static void process_next_command();
  413. // Execute G-code in-place, preserving current G-code parameters
  414. static void process_subcommands_now(FSTR_P fgcode);
  415. static void process_subcommands_now(char * gcode);
  416. static void home_all_axes(const bool keep_leveling=false) {
  417. process_subcommands_now(keep_leveling ? FPSTR(G28_STR) : TERN(CAN_SET_LEVELING_AFTER_G28, F("G28L0"), FPSTR(G28_STR)));
  418. }
  419. #if EITHER(HAS_AUTO_REPORTING, HOST_KEEPALIVE_FEATURE)
  420. static bool autoreport_paused;
  421. static bool set_autoreport_paused(const bool p) {
  422. const bool was = autoreport_paused;
  423. autoreport_paused = p;
  424. return was;
  425. }
  426. #else
  427. static constexpr bool autoreport_paused = false;
  428. static bool set_autoreport_paused(const bool) { return false; }
  429. #endif
  430. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  431. /**
  432. * States for managing Marlin and host communication
  433. * Marlin sends messages if blocked or busy
  434. */
  435. enum MarlinBusyState : char {
  436. NOT_BUSY, // Not in a handler
  437. IN_HANDLER, // Processing a GCode
  438. IN_PROCESS, // Known to be blocking command input (as in G29)
  439. PAUSED_FOR_USER, // Blocking pending any input
  440. PAUSED_FOR_INPUT // Blocking pending text input (concept)
  441. };
  442. static MarlinBusyState busy_state;
  443. static uint8_t host_keepalive_interval;
  444. static void host_keepalive();
  445. static bool host_keepalive_is_paused() { return busy_state >= PAUSED_FOR_USER; }
  446. #define KEEPALIVE_STATE(N) REMEMBER(_KA_, gcode.busy_state, gcode.N)
  447. #else
  448. #define KEEPALIVE_STATE(N) NOOP
  449. #endif
  450. static void dwell(millis_t time);
  451. private:
  452. friend class MarlinSettings;
  453. #if ENABLED(MARLIN_DEV_MODE)
  454. static void D(const int16_t dcode);
  455. #endif
  456. static void G0_G1(TERN_(HAS_FAST_MOVES, const bool fast_move=false));
  457. #if ENABLED(ARC_SUPPORT)
  458. static void G2_G3(const bool clockwise);
  459. #endif
  460. static void G4();
  461. #if ENABLED(BEZIER_CURVE_SUPPORT)
  462. static void G5();
  463. #endif
  464. #if ENABLED(DIRECT_STEPPING)
  465. static void G6();
  466. #endif
  467. #if ENABLED(FWRETRACT)
  468. static void G10();
  469. static void G11();
  470. #endif
  471. #if ENABLED(NOZZLE_CLEAN_FEATURE)
  472. static void G12();
  473. #endif
  474. #if ENABLED(CNC_WORKSPACE_PLANES)
  475. static void G17();
  476. static void G18();
  477. static void G19();
  478. #endif
  479. #if ENABLED(INCH_MODE_SUPPORT)
  480. static void G20();
  481. static void G21();
  482. #endif
  483. #if ENABLED(G26_MESH_VALIDATION)
  484. static void G26();
  485. #endif
  486. #if ENABLED(NOZZLE_PARK_FEATURE)
  487. static void G27();
  488. #endif
  489. static void G28();
  490. #if HAS_LEVELING
  491. #if ENABLED(G29_RETRY_AND_RECOVER)
  492. static void event_probe_failure();
  493. static void event_probe_recover();
  494. static void G29_with_retry();
  495. #define G29_TYPE bool
  496. #else
  497. #define G29_TYPE void
  498. #endif
  499. static G29_TYPE G29();
  500. #endif
  501. #if HAS_BED_PROBE
  502. static void G30();
  503. #if ENABLED(Z_PROBE_SLED)
  504. static void G31();
  505. static void G32();
  506. #endif
  507. #endif
  508. #if ENABLED(DELTA_AUTO_CALIBRATION)
  509. static void G33();
  510. #endif
  511. #if ANY(Z_MULTI_ENDSTOPS, Z_STEPPER_AUTO_ALIGN, MECHANICAL_GANTRY_CALIBRATION)
  512. static void G34();
  513. #endif
  514. #if ENABLED(Z_STEPPER_AUTO_ALIGN)
  515. static void M422();
  516. static void M422_report(const bool forReplay=true);
  517. #endif
  518. #if ENABLED(ASSISTED_TRAMMING)
  519. static void G35();
  520. #endif
  521. #if ENABLED(G38_PROBE_TARGET)
  522. static void G38(const int8_t subcode);
  523. #endif
  524. #if HAS_MESH
  525. static void G42();
  526. #endif
  527. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  528. static void G53();
  529. static void G54();
  530. static void G55();
  531. static void G56();
  532. static void G57();
  533. static void G58();
  534. static void G59();
  535. #endif
  536. #if BOTH(PTC_PROBE, PTC_BED)
  537. static void G76();
  538. #endif
  539. #if SAVED_POSITIONS
  540. static void G60();
  541. static void G61();
  542. #endif
  543. #if ENABLED(GCODE_MOTION_MODES)
  544. static void G80();
  545. #endif
  546. static void G92();
  547. #if ENABLED(CALIBRATION_GCODE)
  548. static void G425();
  549. #endif
  550. #if HAS_RESUME_CONTINUE
  551. static void M0_M1();
  552. #endif
  553. #if HAS_CUTTER
  554. static void M3_M4(const bool is_M4);
  555. static void M5();
  556. #endif
  557. #if ENABLED(COOLANT_MIST)
  558. static void M7();
  559. #endif
  560. #if EITHER(AIR_ASSIST, COOLANT_FLOOD)
  561. static void M8();
  562. #endif
  563. #if EITHER(AIR_ASSIST, COOLANT_CONTROL)
  564. static void M9();
  565. #endif
  566. #if ENABLED(AIR_EVACUATION)
  567. static void M10();
  568. static void M11();
  569. #endif
  570. #if ENABLED(EXTERNAL_CLOSED_LOOP_CONTROLLER)
  571. static void M12();
  572. #endif
  573. #if ENABLED(EXPECTED_PRINTER_CHECK)
  574. static void M16();
  575. #endif
  576. static void M17();
  577. static void M18_M84();
  578. #if ENABLED(SDSUPPORT)
  579. static void M20();
  580. static void M21();
  581. static void M22();
  582. static void M23();
  583. static void M24();
  584. static void M25();
  585. static void M26();
  586. static void M27();
  587. static void M28();
  588. static void M29();
  589. static void M30();
  590. #endif
  591. static void M31();
  592. #if ENABLED(SDSUPPORT)
  593. #if HAS_MEDIA_SUBCALLS
  594. static void M32();
  595. #endif
  596. #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
  597. static void M33();
  598. #endif
  599. #if BOTH(SDCARD_SORT_ALPHA, SDSORT_GCODE)
  600. static void M34();
  601. #endif
  602. #endif
  603. #if ENABLED(DIRECT_PIN_CONTROL)
  604. static void M42();
  605. #endif
  606. #if ENABLED(PINS_DEBUGGING)
  607. static void M43();
  608. #endif
  609. #if ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST)
  610. static void M48();
  611. #endif
  612. #if ENABLED(SET_PROGRESS_MANUALLY)
  613. static void M73();
  614. #endif
  615. static void M75();
  616. static void M76();
  617. static void M77();
  618. #if ENABLED(PRINTCOUNTER)
  619. static void M78();
  620. #endif
  621. #if ENABLED(PSU_CONTROL)
  622. static void M80();
  623. #endif
  624. static void M81();
  625. #if HAS_EXTRUDERS
  626. static void M82();
  627. static void M83();
  628. #endif
  629. static void M85();
  630. static void M92();
  631. static void M92_report(const bool forReplay=true, const int8_t e=-1);
  632. #if ENABLED(M100_FREE_MEMORY_WATCHER)
  633. static void M100();
  634. #endif
  635. #if ENABLED(BD_SENSOR)
  636. static void M102();
  637. static void M102_report(const bool forReplay=true);
  638. #endif
  639. #if HAS_EXTRUDERS
  640. static void M104_M109(const bool isM109);
  641. FORCE_INLINE static void M104() { M104_M109(false); }
  642. FORCE_INLINE static void M109() { M104_M109(true); }
  643. #endif
  644. static void M105();
  645. #if HAS_FAN
  646. static void M106();
  647. static void M107();
  648. #endif
  649. #if DISABLED(EMERGENCY_PARSER)
  650. static void M108();
  651. static void M112();
  652. static void M410();
  653. #if ENABLED(HOST_PROMPT_SUPPORT)
  654. static void M876();
  655. #endif
  656. #endif
  657. static void M110();
  658. static void M111();
  659. #if ENABLED(HOST_KEEPALIVE_FEATURE)
  660. static void M113();
  661. #endif
  662. static void M114();
  663. static void M115();
  664. #if HAS_STATUS_MESSAGE
  665. static void M117();
  666. #endif
  667. static void M118();
  668. static void M119();
  669. static void M120();
  670. static void M121();
  671. #if HAS_FANCHECK
  672. static void M123();
  673. #endif
  674. #if ENABLED(PARK_HEAD_ON_PAUSE)
  675. static void M125();
  676. #endif
  677. #if ENABLED(BARICUDA)
  678. #if HAS_HEATER_1
  679. static void M126();
  680. static void M127();
  681. #endif
  682. #if HAS_HEATER_2
  683. static void M128();
  684. static void M129();
  685. #endif
  686. #endif
  687. #if HAS_HEATED_BED
  688. static void M140_M190(const bool isM190);
  689. FORCE_INLINE static void M140() { M140_M190(false); }
  690. FORCE_INLINE static void M190() { M140_M190(true); }
  691. #endif
  692. #if HAS_HEATED_CHAMBER
  693. static void M141();
  694. static void M191();
  695. #endif
  696. #if HAS_TEMP_PROBE
  697. static void M192();
  698. #endif
  699. #if HAS_COOLER
  700. static void M143();
  701. static void M193();
  702. #endif
  703. #if HAS_PREHEAT
  704. static void M145();
  705. static void M145_report(const bool forReplay=true);
  706. #endif
  707. #if ENABLED(TEMPERATURE_UNITS_SUPPORT)
  708. static void M149();
  709. static void M149_report(const bool forReplay=true);
  710. #endif
  711. #if HAS_COLOR_LEDS
  712. static void M150();
  713. #endif
  714. #if ENABLED(AUTO_REPORT_POSITION)
  715. static void M154();
  716. #endif
  717. #if BOTH(AUTO_REPORT_TEMPERATURES, HAS_TEMP_SENSOR)
  718. static void M155();
  719. #endif
  720. #if ENABLED(MIXING_EXTRUDER)
  721. static void M163();
  722. static void M164();
  723. #if ENABLED(DIRECT_MIXING_IN_G1)
  724. static void M165();
  725. #endif
  726. #if ENABLED(GRADIENT_MIX)
  727. static void M166();
  728. #endif
  729. #endif
  730. #if DISABLED(NO_VOLUMETRICS)
  731. static void M200();
  732. static void M200_report(const bool forReplay=true);
  733. #endif
  734. static void M201();
  735. static void M201_report(const bool forReplay=true);
  736. #if 0
  737. static void M202(); // Not used for Sprinter/grbl gen6
  738. #endif
  739. static void M203();
  740. static void M203_report(const bool forReplay=true);
  741. static void M204();
  742. static void M204_report(const bool forReplay=true);
  743. static void M205();
  744. static void M205_report(const bool forReplay=true);
  745. #if HAS_M206_COMMAND
  746. static void M206();
  747. static void M206_report(const bool forReplay=true);
  748. #endif
  749. #if ENABLED(FWRETRACT)
  750. static void M207();
  751. static void M207_report(const bool forReplay=true);
  752. static void M208();
  753. static void M208_report(const bool forReplay=true);
  754. #if ENABLED(FWRETRACT_AUTORETRACT)
  755. static void M209();
  756. static void M209_report(const bool forReplay=true);
  757. #endif
  758. #endif
  759. static void M211();
  760. static void M211_report(const bool forReplay=true);
  761. #if HAS_MULTI_EXTRUDER
  762. static void M217();
  763. static void M217_report(const bool forReplay=true);
  764. #endif
  765. #if HAS_HOTEND_OFFSET
  766. static void M218();
  767. static void M218_report(const bool forReplay=true);
  768. #endif
  769. static void M220();
  770. #if HAS_EXTRUDERS
  771. static void M221();
  772. #endif
  773. #if ENABLED(DIRECT_PIN_CONTROL)
  774. static void M226();
  775. #endif
  776. #if ENABLED(PHOTO_GCODE)
  777. static void M240();
  778. #endif
  779. #if HAS_LCD_CONTRAST
  780. static void M250();
  781. static void M250_report(const bool forReplay=true);
  782. #endif
  783. #if HAS_GCODE_M255
  784. static void M255();
  785. static void M255_report(const bool forReplay=true);
  786. #endif
  787. #if HAS_LCD_BRIGHTNESS
  788. static void M256();
  789. static void M256_report(const bool forReplay=true);
  790. #endif
  791. #if ENABLED(EXPERIMENTAL_I2CBUS)
  792. static void M260();
  793. static void M261();
  794. #endif
  795. #if HAS_SERVOS
  796. static void M280();
  797. #if ENABLED(EDITABLE_SERVO_ANGLES)
  798. static void M281();
  799. static void M281_report(const bool forReplay=true);
  800. #endif
  801. #if ENABLED(SERVO_DETACH_GCODE)
  802. static void M282();
  803. #endif
  804. #endif
  805. #if ENABLED(BABYSTEPPING)
  806. static void M290();
  807. #endif
  808. #if HAS_SOUND
  809. static void M300();
  810. #endif
  811. #if ENABLED(PIDTEMP)
  812. static void M301();
  813. static void M301_report(const bool forReplay=true E_OPTARG(const int8_t eindex=-1));
  814. #endif
  815. #if ENABLED(PREVENT_COLD_EXTRUSION)
  816. static void M302();
  817. #endif
  818. #if HAS_PID_HEATING
  819. static void M303();
  820. #endif
  821. #if ENABLED(PIDTEMPBED)
  822. static void M304();
  823. static void M304_report(const bool forReplay=true);
  824. #endif
  825. #if HAS_USER_THERMISTORS
  826. static void M305();
  827. #endif
  828. #if ENABLED(MPCTEMP)
  829. static void M306();
  830. static void M306_report(const bool forReplay=true);
  831. #endif
  832. #if ENABLED(PIDTEMPCHAMBER)
  833. static void M309();
  834. static void M309_report(const bool forReplay=true);
  835. #endif
  836. #if HAS_MICROSTEPS
  837. static void M350();
  838. static void M351();
  839. #endif
  840. #if ENABLED(CASE_LIGHT_ENABLE)
  841. static void M355();
  842. #endif
  843. #if ENABLED(REPETIER_GCODE_M360)
  844. static void M360();
  845. #endif
  846. #if ENABLED(MORGAN_SCARA)
  847. static bool M360();
  848. static bool M361();
  849. static bool M362();
  850. static bool M363();
  851. static bool M364();
  852. #endif
  853. #if EITHER(EXT_SOLENOID, MANUAL_SOLENOID_CONTROL)
  854. static void M380();
  855. static void M381();
  856. #endif
  857. static void M400();
  858. #if HAS_BED_PROBE
  859. static void M401();
  860. static void M402();
  861. #endif
  862. #if HAS_PRUSA_MMU2
  863. static void M403();
  864. #endif
  865. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  866. static void M404();
  867. static void M405();
  868. static void M406();
  869. static void M407();
  870. #endif
  871. #if HAS_FILAMENT_SENSOR
  872. static void M412();
  873. static void M412_report(const bool forReplay=true);
  874. #endif
  875. #if HAS_MULTI_LANGUAGE
  876. static void M414();
  877. static void M414_report(const bool forReplay=true);
  878. #endif
  879. #if HAS_LEVELING
  880. static void M420();
  881. static void M420_report(const bool forReplay=true);
  882. static void M421();
  883. #endif
  884. #if ENABLED(BACKLASH_GCODE)
  885. static void M425();
  886. static void M425_report(const bool forReplay=true);
  887. #endif
  888. #if HAS_M206_COMMAND
  889. static void M428();
  890. #endif
  891. #if HAS_POWER_MONITOR
  892. static void M430();
  893. #endif
  894. #if ENABLED(CANCEL_OBJECTS)
  895. static void M486();
  896. #endif
  897. static void M500();
  898. static void M501();
  899. static void M502();
  900. #if DISABLED(DISABLE_M503)
  901. static void M503();
  902. #endif
  903. #if ENABLED(EEPROM_SETTINGS)
  904. static void M504();
  905. #endif
  906. #if ENABLED(PASSWORD_FEATURE)
  907. static void M510();
  908. #if ENABLED(PASSWORD_UNLOCK_GCODE)
  909. static void M511();
  910. #endif
  911. #if ENABLED(PASSWORD_CHANGE_GCODE)
  912. static void M512();
  913. #endif
  914. #endif
  915. #if ENABLED(SDSUPPORT)
  916. static void M524();
  917. #endif
  918. #if ENABLED(SD_ABORT_ON_ENDSTOP_HIT)
  919. static void M540();
  920. #endif
  921. #if HAS_ETHERNET
  922. static void M552();
  923. static void M552_report();
  924. static void M553();
  925. static void M553_report();
  926. static void M554();
  927. static void M554_report();
  928. #endif
  929. #if HAS_STEALTHCHOP
  930. static void M569();
  931. static void M569_report(const bool forReplay=true);
  932. #endif
  933. #if ENABLED(BAUD_RATE_GCODE)
  934. static void M575();
  935. #endif
  936. #if ENABLED(INPUT_SHAPING)
  937. static void M593();
  938. static void M593_report(const bool forReplay=true);
  939. #endif
  940. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  941. static void M600();
  942. static void M603();
  943. static void M603_report(const bool forReplay=true);
  944. #endif
  945. #if HAS_DUPLICATION_MODE
  946. static void M605();
  947. #endif
  948. #if IS_KINEMATIC
  949. static void M665();
  950. static void M665_report(const bool forReplay=true);
  951. #endif
  952. #if EITHER(DELTA, HAS_EXTRA_ENDSTOPS)
  953. static void M666();
  954. static void M666_report(const bool forReplay=true);
  955. #endif
  956. #if ENABLED(DUET_SMART_EFFECTOR) && PIN_EXISTS(SMART_EFFECTOR_MOD)
  957. static void M672();
  958. #endif
  959. #if ENABLED(FILAMENT_LOAD_UNLOAD_GCODES)
  960. static void M701();
  961. static void M702();
  962. #endif
  963. #if ENABLED(GCODE_REPEAT_MARKERS)
  964. static void M808();
  965. #endif
  966. #if ENABLED(GCODE_MACROS)
  967. static void M810_819();
  968. #endif
  969. #if HAS_BED_PROBE
  970. static void M851();
  971. static void M851_report(const bool forReplay=true);
  972. #endif
  973. #if ENABLED(SKEW_CORRECTION_GCODE)
  974. static void M852();
  975. static void M852_report(const bool forReplay=true);
  976. #endif
  977. #if ENABLED(I2C_POSITION_ENCODERS)
  978. FORCE_INLINE static void M860() { I2CPEM.M860(); }
  979. FORCE_INLINE static void M861() { I2CPEM.M861(); }
  980. FORCE_INLINE static void M862() { I2CPEM.M862(); }
  981. FORCE_INLINE static void M863() { I2CPEM.M863(); }
  982. FORCE_INLINE static void M864() { I2CPEM.M864(); }
  983. FORCE_INLINE static void M865() { I2CPEM.M865(); }
  984. FORCE_INLINE static void M866() { I2CPEM.M866(); }
  985. FORCE_INLINE static void M867() { I2CPEM.M867(); }
  986. FORCE_INLINE static void M868() { I2CPEM.M868(); }
  987. FORCE_INLINE static void M869() { I2CPEM.M869(); }
  988. #endif
  989. #if HAS_PTC
  990. static void M871();
  991. #endif
  992. #if ENABLED(LIN_ADVANCE)
  993. static void M900();
  994. static void M900_report(const bool forReplay=true);
  995. #endif
  996. #if HAS_TRINAMIC_CONFIG
  997. static void M122();
  998. static void M906();
  999. static void M906_report(const bool forReplay=true);
  1000. #if ENABLED(MONITOR_DRIVER_STATUS)
  1001. static void M911();
  1002. static void M912();
  1003. #endif
  1004. #if ENABLED(HYBRID_THRESHOLD)
  1005. static void M913();
  1006. static void M913_report(const bool forReplay=true);
  1007. #endif
  1008. #if USE_SENSORLESS
  1009. static void M914();
  1010. static void M914_report(const bool forReplay=true);
  1011. #endif
  1012. static void M919();
  1013. #endif
  1014. #if HAS_MOTOR_CURRENT_SPI || HAS_MOTOR_CURRENT_PWM || HAS_MOTOR_CURRENT_I2C || HAS_MOTOR_CURRENT_DAC
  1015. static void M907();
  1016. #if HAS_MOTOR_CURRENT_SPI || HAS_MOTOR_CURRENT_PWM
  1017. static void M907_report(const bool forReplay=true);
  1018. #endif
  1019. #endif
  1020. #if HAS_MOTOR_CURRENT_SPI || HAS_MOTOR_CURRENT_DAC
  1021. static void M908();
  1022. #endif
  1023. #if HAS_MOTOR_CURRENT_DAC
  1024. static void M909();
  1025. static void M910();
  1026. #endif
  1027. #if ENABLED(SDSUPPORT)
  1028. static void M928();
  1029. #endif
  1030. #if ENABLED(MAGNETIC_PARKING_EXTRUDER)
  1031. static void M951();
  1032. #endif
  1033. #if ENABLED(TOUCH_SCREEN_CALIBRATION)
  1034. static void M995();
  1035. #endif
  1036. #if BOTH(SPI_FLASH, SDSUPPORT)
  1037. static void M993();
  1038. static void M994();
  1039. #endif
  1040. #if ENABLED(PLATFORM_M997_SUPPORT)
  1041. static void M997();
  1042. #endif
  1043. static void M999();
  1044. #if ENABLED(POWER_LOSS_RECOVERY)
  1045. static void M413();
  1046. static void M413_report(const bool forReplay=true);
  1047. static void M1000();
  1048. #endif
  1049. #if ENABLED(X_AXIS_TWIST_COMPENSATION)
  1050. static void M423();
  1051. static void M423_report(const bool forReplay=true);
  1052. #endif
  1053. #if ENABLED(SDSUPPORT)
  1054. static void M1001();
  1055. #endif
  1056. #if ENABLED(DGUS_LCD_UI_MKS)
  1057. static void M1002();
  1058. #endif
  1059. #if ENABLED(UBL_MESH_WIZARD)
  1060. static void M1004();
  1061. #endif
  1062. #if ENABLED(HAS_MCP3426_ADC)
  1063. static void M3426();
  1064. #endif
  1065. #if ENABLED(MAX7219_GCODE)
  1066. static void M7219();
  1067. #endif
  1068. #if ENABLED(CONTROLLER_FAN_EDITABLE)
  1069. static void M710();
  1070. static void M710_report(const bool forReplay=true);
  1071. #endif
  1072. static void T(const int8_t tool_index);
  1073. };
  1074. extern GcodeSuite gcode;