Removed Delta from the default config file.

Changed EEPROM CHITCHAT behavior. M503 is always enabled.
This commit is contained in:
Erik van der Zalm
2013-09-14 13:50:09 +02:00
parent 59e36f1d27
commit 3626b5ad8b
3 changed files with 5 additions and 43 deletions

View File

@ -94,7 +94,7 @@ void Config_StoreSettings()
#endif //EEPROM_SETTINGS
#ifdef EEPROM_CHITCHAT
#ifndef DISABLE_M503
void Config_PrintSettings()
{ // Always have this function, even with EEPROM_SETTINGS disabled, the current values will be shown
SERIAL_ECHO_START;
@ -231,7 +231,9 @@ void Config_RetrieveSettings()
{
Config_ResetDefault();
}
Config_PrintSettings();
#ifdef EEPROM_CHITCHAT
Config_PrintSettings();
#endif
}
#endif