Browse Source

Remove definition of VERSION_STRING and replace where usend with STRING_VERSION

AnHardt 9 years ago
parent
commit
59315330dd
1 changed files with 1 additions and 3 deletions
  1. 1
    3
      Marlin/Marlin_main.cpp

+ 1
- 3
Marlin/Marlin_main.cpp View File

61
 #include <SPI.h>
61
 #include <SPI.h>
62
 #endif
62
 #endif
63
 
63
 
64
-#define VERSION_STRING  "1.0.0"
65
-
66
 // look here for descriptions of G-codes: http://linuxcnc.org/handbook/gcode/g-code.html
64
 // look here for descriptions of G-codes: http://linuxcnc.org/handbook/gcode/g-code.html
67
 // http://objects.reprap.org/wiki/Mendel_User_Manual:_RepRapGCodes
65
 // http://objects.reprap.org/wiki/Mendel_User_Manual:_RepRapGCodes
68
 
66
 
587
   MCUSR=0;
585
   MCUSR=0;
588
 
586
 
589
   SERIAL_ECHOPGM(MSG_MARLIN);
587
   SERIAL_ECHOPGM(MSG_MARLIN);
590
-  SERIAL_ECHOLNPGM(VERSION_STRING);
588
+  SERIAL_ECHOLNPGM(STRING_VERSION);
591
   #ifdef STRING_VERSION_CONFIG_H
589
   #ifdef STRING_VERSION_CONFIG_H
592
     #ifdef STRING_CONFIG_H_AUTHOR
590
     #ifdef STRING_CONFIG_H_AUTHOR
593
       SERIAL_ECHO_START;
591
       SERIAL_ECHO_START;

Loading…
Cancel
Save