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,6 +56,8 @@
56 56
  * G12 - Clean tool
57 57
  * G20 - Set input units to inches
58 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 61
  * G28 - Home one or more axes
60 62
  * G29 - Detailed Z probe, probes the bed at 3 or more points.  Will fail if you haven't homed yet.
61 63
  * G30 - Single Z probe, probes bed at X Y location (defaults to current XY location)
@@ -105,6 +107,7 @@
105 107
  *        duration after which steppers should turn off. S0 disables the timeout.
106 108
  * M85  - Set inactivity shutdown timer with parameter S<seconds>. To disable set zero (default)
107 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 111
  * M104 - Set extruder target temp.
109 112
  * M105 - Report current temperatures.
110 113
  * M106 - Fan on.
@@ -210,7 +213,6 @@
210 213
  * M364 - SCARA calibration: Move to cal-position PSIC (90 deg to Theta calibration position)
211 214
  *
212 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 216
  * M928 - Start SD logging: "M928 filename.gco". Stop with M29. (Requires SDSUPPORT)
215 217
  * M999 - Restart after being stopped by error
216 218
  *

Loading…
Cancel
Save