|
@@ -248,9 +248,19 @@ void setup()
|
248
|
248
|
{
|
249
|
249
|
setup_powerhold();
|
250
|
250
|
SERIAL.begin(BAUDRATE);
|
|
251
|
+ SERIAL_PROTOCOLLNPGM("start");
|
251
|
252
|
SERIAL_ECHO_START;
|
|
253
|
+ SERIAL_ECHOPGM("Marlin: ");
|
252
|
254
|
SERIAL_ECHOLNPGM(VERSION_STRING);
|
253
|
|
- SERIAL_PROTOCOLLNPGM("start");
|
|
255
|
+ #ifdef STRING_VERSION_CONFIG_H
|
|
256
|
+ #ifdef STRING_CONFIG_H_AUTHOR
|
|
257
|
+ SERIAL_ECHO_START;
|
|
258
|
+ SERIAL_ECHOPGM("Configuration.h: ");
|
|
259
|
+ SERIAL_ECHOPGM(STRING_VERSION_CONFIG_H);
|
|
260
|
+ SERIAL_ECHOPGM(" | Author: ");
|
|
261
|
+ SERIAL_ECHOLNPGM(STRING_CONFIG_H_AUTHOR);
|
|
262
|
+ #endif
|
|
263
|
+ #endif
|
254
|
264
|
SERIAL_ECHO_START;
|
255
|
265
|
SERIAL_ECHOPGM("Free Memory:");
|
256
|
266
|
SERIAL_ECHO(freeMemory());
|