Browse Source

Enable M503 also when eeprom is disabled

Erik vd Zalm 12 years ago
parent
commit
f92dc91c3d
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      Marlin/EEPROMwrite.h
  2. 1
    1
      Marlin/Marlin.pde

+ 2
- 2
Marlin/EEPROMwrite.h View File

78
 
78
 
79
 inline void EEPROM_printSettings()
79
 inline void EEPROM_printSettings()
80
 {  // if def=true, the default values will be used
80
 {  // if def=true, the default values will be used
81
-  #ifdef EEPROM_SETTINGS  
81
+//  #ifdef EEPROM_SETTINGS  
82
       SERIAL_ECHO_START;
82
       SERIAL_ECHO_START;
83
       SERIAL_ECHOLNPGM("Steps per unit:");
83
       SERIAL_ECHOLNPGM("Steps per unit:");
84
       SERIAL_ECHO_START;
84
       SERIAL_ECHO_START;
136
       SERIAL_ECHOPAIR(" D" ,Kd*PID_dT);
136
       SERIAL_ECHOPAIR(" D" ,Kd*PID_dT);
137
       SERIAL_ECHOLN(""); 
137
       SERIAL_ECHOLN(""); 
138
     #endif
138
     #endif
139
-  #endif
139
+//  #endif
140
 } 
140
 } 
141
 
141
 
142
 
142
 

+ 1
- 1
Marlin/Marlin.pde View File

40
 #include "language.h"
40
 #include "language.h"
41
 #include "pins_arduino.h"
41
 #include "pins_arduino.h"
42
 
42
 
43
-#define VERSION_STRING  "1.0.0 RC2"
43
+#define VERSION_STRING  "1.0.0"
44
 
44
 
45
 // look here for descriptions of gcodes: http://linuxcnc.org/handbook/gcode/g-code.html
45
 // look here for descriptions of gcodes: http://linuxcnc.org/handbook/gcode/g-code.html
46
 // http://objects.reprap.org/wiki/Mendel_User_Manual:_RepRapGCodes
46
 // http://objects.reprap.org/wiki/Mendel_User_Manual:_RepRapGCodes

Loading…
Cancel
Save