Browse Source

Comment G26 properly

Scott Lahteine 6 years ago
parent
commit
ca8fdff1af
1 changed files with 19 additions and 1 deletions
  1. 19
    1
      Marlin/src/gcode/bedlevel/G26.cpp

+ 19
- 1
Marlin/src/gcode/bedlevel/G26.cpp View File

149
       g26_layer_height,
149
       g26_layer_height,
150
       g26_prime_length;
150
       g26_prime_length;
151
 
151
 
152
-float g26_x_pos=0, g26_y_pos=0;
152
+float g26_x_pos = 0, g26_y_pos = 0;
153
 
153
 
154
 int16_t g26_bed_temp,
154
 int16_t g26_bed_temp,
155
         g26_hotend_temp;
155
         g26_hotend_temp;
547
  *
547
  *
548
  * Used to interactively edit the mesh by placing the
548
  * Used to interactively edit the mesh by placing the
549
  * nozzle in a problem area and doing a G29 P4 R command.
549
  * nozzle in a problem area and doing a G29 P4 R command.
550
+ *
551
+ * Parameters:
552
+ *
553
+ *  B  Bed Temperature
554
+ *  C  Continue from the Closest mesh point
555
+ *  D  Disable leveling before starting
556
+ *  F  Filament diameter
557
+ *  H  Hotend Temperature
558
+ *  K  Keep heaters on when completed
559
+ *  L  Layer Height
560
+ *  O  Ooze extrusion length
561
+ *  P  Prime length
562
+ *  Q  Retraction multiplier
563
+ *  R  Repetitions (number of grid points)
564
+ *  S  Nozzle Size (diameter) in mm
565
+ *  U  Random deviation (50 if no value given)
566
+ *  X  X position
567
+ *  Y  Y position
550
  */
568
  */
551
 void GcodeSuite::G26() {
569
 void GcodeSuite::G26() {
552
   SERIAL_ECHOLNPGM("G26 command started. Waiting for heater(s).");
570
   SERIAL_ECHOLNPGM("G26 command started. Waiting for heater(s).");

Loading…
Cancel
Save