Skip to content

Commit

Permalink
🩹 Tweak startup message (MarlinFirmware#22633)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpruvot authored and mh-dm committed May 15, 2022
1 parent 8aec2de commit c0f2ea5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Marlin/src/MarlinCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1279,14 +1279,13 @@ void setup() {
HAL_clear_reset_source();

SERIAL_ECHOLNPGM("Marlin " SHORT_BUILD_VERSION);
SERIAL_EOL();
#if defined(STRING_DISTRIBUTION_DATE) && defined(STRING_CONFIG_H_AUTHOR)
SERIAL_ECHO_MSG(
" Last Updated: " STRING_DISTRIBUTION_DATE
" | Author: " STRING_CONFIG_H_AUTHOR
);
#endif
SERIAL_ECHO_MSG("Compiled: " __DATE__);
SERIAL_ECHO_MSG(" Compiled: " __DATE__);
SERIAL_ECHO_MSG(STR_FREE_MEMORY, freeMemory(), STR_PLANNER_BUFFER_BYTES, sizeof(block_t) * (BLOCK_BUFFER_SIZE));

// Some HAL need precise delay adjustment
Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/feature/ethernet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void MarlinEthernet::check() {
" | Author: " STRING_CONFIG_H_AUTHOR
);
#endif
telnetClient.println("Compiled: " __DATE__);
telnetClient.println(" Compiled: " __DATE__);

SERIAL_ECHOLNPGM("Client connected");
have_telnet_client = true;
Expand Down

0 comments on commit c0f2ea5

Please sign in to comment.