|
|
@ -248,9 +248,19 @@ void setup() |
|
|
|
{ |
|
|
|
setup_powerhold(); |
|
|
|
SERIAL.begin(BAUDRATE); |
|
|
|
SERIAL_PROTOCOLLNPGM("start"); |
|
|
|
SERIAL_ECHO_START; |
|
|
|
SERIAL_ECHOPGM("Marlin: "); |
|
|
|
SERIAL_ECHOLNPGM(VERSION_STRING); |
|
|
|
SERIAL_PROTOCOLLNPGM("start"); |
|
|
|
#ifdef STRING_VERSION_CONFIG_H |
|
|
|
#ifdef STRING_CONFIG_H_AUTHOR |
|
|
|
SERIAL_ECHO_START; |
|
|
|
SERIAL_ECHOPGM("Configuration.h: "); |
|
|
|
SERIAL_ECHOPGM(STRING_VERSION_CONFIG_H); |
|
|
|
SERIAL_ECHOPGM(" | Author: "); |
|
|
|
SERIAL_ECHOLNPGM(STRING_CONFIG_H_AUTHOR); |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
SERIAL_ECHO_START; |
|
|
|
SERIAL_ECHOPGM("Free Memory:"); |
|
|
|
SERIAL_ECHO(freeMemory()); |
|
|
|