Browse Source

Add some GCodes to the header of Marlin_main.cpp

Scott Lahteine 8 years ago
parent
commit
92fbea2906
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      Marlin/Marlin_main.cpp

+ 3
- 1
Marlin/Marlin_main.cpp View File

56
  * G12 - Clean tool
56
  * G12 - Clean tool
57
  * G20 - Set input units to inches
57
  * G20 - Set input units to inches
58
  * G21 - Set input units to millimeters
58
  * G21 - Set input units to millimeters
59
+ * G26 - Mesh Validation Pattern (Requires UBL_G26_MESH_EDITING)
60
+ * G27 - Park Nozzle (Requires NOZZLE_PARK_FEATURE)
59
  * G28 - Home one or more axes
61
  * G28 - Home one or more axes
60
  * G29 - Detailed Z probe, probes the bed at 3 or more points.  Will fail if you haven't homed yet.
62
  * G29 - Detailed Z probe, probes the bed at 3 or more points.  Will fail if you haven't homed yet.
61
  * G30 - Single Z probe, probes bed at X Y location (defaults to current XY location)
63
  * G30 - Single Z probe, probes bed at X Y location (defaults to current XY location)
105
  *        duration after which steppers should turn off. S0 disables the timeout.
107
  *        duration after which steppers should turn off. S0 disables the timeout.
106
  * M85  - Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
108
  * M85  - Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
107
  * M92  - Set planner.axis_steps_per_mm for one or more axes.
109
  * M92  - Set planner.axis_steps_per_mm for one or more axes.
110
+ * M100 - Watch Free Memory (for debugging) (Requires M100_FREE_MEMORY_WATCHER)
108
  * M104 - Set extruder target temp.
111
  * M104 - Set extruder target temp.
109
  * M105 - Report current temperatures.
112
  * M105 - Report current temperatures.
110
  * M106 - Fan on.
113
  * M106 - Fan on.
210
  * M364 - SCARA calibration: Move to cal-position PSIC (90 deg to Theta calibration position)
213
  * M364 - SCARA calibration: Move to cal-position PSIC (90 deg to Theta calibration position)
211
  *
214
  *
212
  * ************ Custom codes - This can change to suit future G-code regulations
215
  * ************ Custom codes - This can change to suit future G-code regulations
213
- * M100 - Watch Free Memory (For Debugging). (Requires M100_FREE_MEMORY_WATCHER)
214
  * M928 - Start SD logging: "M928 filename.gco". Stop with M29. (Requires SDSUPPORT)
216
  * M928 - Start SD logging: "M928 filename.gco". Stop with M29. (Requires SDSUPPORT)
215
  * M999 - Restart after being stopped by error
217
  * M999 - Restart after being stopped by error
216
  *
218
  *

Loading…
Cancel
Save