Tweak serial output code

This commit is contained in:
Scott Lahteine
2019-02-02 23:32:48 -06:00
parent a5e3384691
commit 4fa1c52688
10 changed files with 14 additions and 14 deletions

View File

@ -1961,7 +1961,7 @@ void MarlinSettings::postprocess() {
const bool status = persistentStore.write_data(pos, (uint8_t *)&ubl.z_values, sizeof(ubl.z_values), &crc);
persistentStore.access_finish();
if (status) SERIAL_ECHOPGM("?Unable to save mesh data.\n");
if (status) SERIAL_ECHOLNPGM("?Unable to save mesh data.");
else CHITCHAT_ECHOLNPAIR("Mesh saved in slot ", slot);
#else
@ -1990,7 +1990,7 @@ void MarlinSettings::postprocess() {
const uint16_t status = persistentStore.read_data(pos, dest, sizeof(ubl.z_values), &crc);
persistentStore.access_finish();
if (status) SERIAL_ECHOPGM("?Unable to load mesh data.\n");
if (status) SERIAL_ECHOLNPGM("?Unable to load mesh data.");
else CHITCHAT_ECHOLNPAIR("Mesh loaded from slot ", slot);
EEPROM_FINISH();

View File

@ -872,7 +872,7 @@ void Endstops::update() {
#if HAS_Z3_MAX
ES_REPORT_CHANGE(Z3_MAX);
#endif
SERIAL_ECHOPGM("\n\n");
SERIAL_ECHOLNPGM("\n");
analogWrite(LED_PIN, local_LED_status);
local_LED_status ^= 255;
old_live_state_local = live_state_local;