|
|
@ -164,7 +164,7 @@
|
|
|
|
// M500 - stores parameters in EEPROM
|
|
|
|
// M500 - stores parameters in EEPROM
|
|
|
|
// M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
|
|
|
|
// M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
|
|
|
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
|
|
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
|
|
|
// M503 - print the current settings (from memory not from EEPROM)
|
|
|
|
// M503 - print the current settings (from memory not from EEPROM). Use S0 to leave off headings.
|
|
|
|
// M540 - Use S[0|1] to enable or disable the stop SD card print on endstop hit (requires ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
|
|
|
|
// M540 - Use S[0|1] to enable or disable the stop SD card print on endstop hit (requires ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
|
|
|
|
// M600 - Pause for filament change X[pos] Y[pos] Z[relative lift] E[initial retract] L[later retract distance for removal]
|
|
|
|
// M600 - Pause for filament change X[pos] Y[pos] Z[relative lift] E[initial retract] L[later retract distance for removal]
|
|
|
|
// M665 - set delta configurations
|
|
|
|
// M665 - set delta configurations
|
|
|
@ -3581,7 +3581,7 @@ case 404: //M404 Enter the nominal filament width (3mm, 1.75mm ) N<3.0> or disp
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case 503: // M503 print settings currently in memory
|
|
|
|
case 503: // M503 print settings currently in memory
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Config_PrintSettings();
|
|
|
|
Config_PrintSettings(code_seen('S') && code_value == 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
#ifdef ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
|
|
|
|
#ifdef ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
|
|
|
|