Comment G26 properly

This commit is contained in:
Scott Lahteine 2018-02-06 00:58:13 -06:00
parent 8558264514
commit ca8fdff1af

View file

@ -149,7 +149,7 @@ float g26_extrusion_multiplier,
g26_layer_height,
g26_prime_length;
float g26_x_pos=0, g26_y_pos=0;
float g26_x_pos = 0, g26_y_pos = 0;
int16_t g26_bed_temp,
g26_hotend_temp;
@ -547,6 +547,24 @@ float valid_trig_angle(float d) {
*
* Used to interactively edit the mesh by placing the
* nozzle in a problem area and doing a G29 P4 R command.
*
* Parameters:
*
* B Bed Temperature
* C Continue from the Closest mesh point
* D Disable leveling before starting
* F Filament diameter
* H Hotend Temperature
* K Keep heaters on when completed
* L Layer Height
* O Ooze extrusion length
* P Prime length
* Q Retraction multiplier
* R Repetitions (number of grid points)
* S Nozzle Size (diameter) in mm
* U Random deviation (50 if no value given)
* X X position
* Y Y position
*/
void GcodeSuite::G26() {
SERIAL_ECHOLNPGM("G26 command started. Waiting for heater(s).");