Add disclaimer for verboten parameters
This commit is contained in:
parent
0696dda470
commit
ba29da56e0
@ -686,7 +686,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (code_seen('N') || code_seen('n')) {
|
if (code_seen('N') || code_seen('n')) { // Warning! Use of 'N' / lowercase flouts established standards.
|
||||||
nozzle = code_value_float();
|
nozzle = code_value_float();
|
||||||
if (!WITHIN(nozzle, 0.1, 1.0)) {
|
if (!WITHIN(nozzle, 0.1, 1.0)) {
|
||||||
SERIAL_PROTOCOLLNPGM("?Specified nozzle size not plausible.");
|
SERIAL_PROTOCOLLNPGM("?Specified nozzle size not plausible.");
|
||||||
@ -728,7 +728,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (code_seen('M')) {
|
if (code_seen('M')) { // Warning! Use of 'M' flouts established standards.
|
||||||
randomSeed(millis());
|
randomSeed(millis());
|
||||||
// This setting will persist for the next G26
|
// This setting will persist for the next G26
|
||||||
random_deviation = code_has_value() ? code_value_float() : 50.0;
|
random_deviation = code_has_value() ? code_value_float() : 50.0;
|
||||||
|
@ -328,7 +328,8 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!code_seen('N') && axis_unhomed_error(true, true, true)) // Don't allow auto-leveling without homing first
|
// Don't allow auto-leveling without homing first
|
||||||
|
if (!code_seen('N') && axis_unhomed_error(true, true, true)) // Warning! Use of 'N' flouts established standards.
|
||||||
home_all_axes();
|
home_all_axes();
|
||||||
|
|
||||||
if (g29_parameter_parsing()) return; // abort if parsing the simple parameters causes a problem,
|
if (g29_parameter_parsing()) return; // abort if parsing the simple parameters causes a problem,
|
||||||
@ -385,7 +386,7 @@
|
|||||||
|
|
||||||
if (code_seen('J')) {
|
if (code_seen('J')) {
|
||||||
ubl.save_ubl_active_state_and_disable();
|
ubl.save_ubl_active_state_and_disable();
|
||||||
ubl.tilt_mesh_based_on_probed_grid(code_seen('O') || code_seen('M'));
|
ubl.tilt_mesh_based_on_probed_grid(code_seen('O') || code_seen('M')); // Warning! Use of 'M' flouts established standards.
|
||||||
ubl.restore_ubl_active_state_and_leave();
|
ubl.restore_ubl_active_state_and_leave();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -419,7 +420,7 @@
|
|||||||
SERIAL_PROTOCOLLNPGM(").\n");
|
SERIAL_PROTOCOLLNPGM(").\n");
|
||||||
}
|
}
|
||||||
ubl.probe_entire_mesh(x_pos + X_PROBE_OFFSET_FROM_EXTRUDER, y_pos + Y_PROBE_OFFSET_FROM_EXTRUDER,
|
ubl.probe_entire_mesh(x_pos + X_PROBE_OFFSET_FROM_EXTRUDER, y_pos + Y_PROBE_OFFSET_FROM_EXTRUDER,
|
||||||
code_seen('O') || code_seen('M'), code_seen('E'), code_seen('U'));
|
code_seen('O') || code_seen('M'), code_seen('E'), code_seen('U')); // Warning! Use of 'M' flouts established standards.
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2: {
|
case 2: {
|
||||||
@ -468,7 +469,7 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
manually_probe_remaining_mesh(x_pos, y_pos, height, card_thickness, code_seen('O') || code_seen('M'));
|
manually_probe_remaining_mesh(x_pos, y_pos, height, card_thickness, code_seen('O') || code_seen('M')); // Warning! Use of 'M' flouts established standards.
|
||||||
SERIAL_PROTOCOLLNPGM("G29 P2 finished.");
|
SERIAL_PROTOCOLLNPGM("G29 P2 finished.");
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
@ -504,7 +505,7 @@
|
|||||||
//
|
//
|
||||||
// Fine Tune (i.e., Edit) the Mesh
|
// Fine Tune (i.e., Edit) the Mesh
|
||||||
//
|
//
|
||||||
fine_tune_mesh(x_pos, y_pos, code_seen('O') || code_seen('M'));
|
fine_tune_mesh(x_pos, y_pos, code_seen('O') || code_seen('M')); // Warning! Use of 'M' flouts established standards.
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 5: ubl.find_mean_mesh_height(); break;
|
case 5: ubl.find_mean_mesh_height(); break;
|
||||||
@ -549,7 +550,7 @@
|
|||||||
// When we are fully debugged, the EEPROM dump command will get deleted also. But
|
// When we are fully debugged, the EEPROM dump command will get deleted also. But
|
||||||
// right now, it is good to have the extra information. Soon... we prune this.
|
// right now, it is good to have the extra information. Soon... we prune this.
|
||||||
//
|
//
|
||||||
if (code_seen('j')) g29_eeprom_dump(); // EEPROM Dump
|
if (code_seen('j')) g29_eeprom_dump(); // Warning! Use of lowercase flouts established standards.
|
||||||
|
|
||||||
//
|
//
|
||||||
// When we are fully debugged, this may go away. But there are some valid
|
// When we are fully debugged, this may go away. But there are some valid
|
||||||
@ -613,7 +614,7 @@
|
|||||||
SERIAL_PROTOCOLLNPGM("Done.\n");
|
SERIAL_PROTOCOLLNPGM("Done.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (code_seen('O') || code_seen('M'))
|
if (code_seen('O') || code_seen('M')) // Warning! Use of 'M' flouts established standards.
|
||||||
ubl.display_map(code_has_value() ? code_value_int() : 0);
|
ubl.display_map(code_has_value() ? code_value_int() : 0);
|
||||||
|
|
||||||
if (code_seen('Z')) {
|
if (code_seen('Z')) {
|
||||||
@ -1128,8 +1129,8 @@
|
|||||||
SERIAL_PROTOCOLLNPGM("Invalid map type.\n");
|
SERIAL_PROTOCOLLNPGM("Invalid map type.\n");
|
||||||
return UBL_ERR;
|
return UBL_ERR;
|
||||||
}
|
}
|
||||||
|
// Check if a map type was specified
|
||||||
if (code_seen('M')) { // Check if a map type was specified
|
if (code_seen('M')) { // Warning! Use of 'M' flouts established standards.
|
||||||
map_type = code_has_value() ? code_value_int() : 0;
|
map_type = code_has_value() ? code_value_int() : 0;
|
||||||
if (!WITHIN(map_type, 0, 1)) {
|
if (!WITHIN(map_type, 0, 1)) {
|
||||||
SERIAL_PROTOCOLLNPGM("Invalid map type.\n");
|
SERIAL_PROTOCOLLNPGM("Invalid map type.\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user