Browse Source

Fixed bug in configuration.h

Erik van der Zalm 13 years ago
parent
commit
b15902d3b5
1 changed files with 8 additions and 8 deletions
  1. 8
    8
      Marlin/Configuration.h

+ 8
- 8
Marlin/Configuration.h View File

31
 // Sanguinololu 1.2 and above = 62
31
 // Sanguinololu 1.2 and above = 62
32
 // Ultimaker = 7,
32
 // Ultimaker = 7,
33
 // Teensylu = 8
33
 // Teensylu = 8
34
-#define MOTHERBOARD 5
34
+#define MOTHERBOARD 7
35
 
35
 
36
 //===========================================================================
36
 //===========================================================================
37
 //=============================Thermal Settings  ============================
37
 //=============================Thermal Settings  ============================
176
 //#define INVERT_Z_DIR false    // for Mendel set to false, for Orca set to true
176
 //#define INVERT_Z_DIR false    // for Mendel set to false, for Orca set to true
177
 //#define INVERT_E_DIR true   // for direct drive extruder v9 set to true, for geared extruder set to false
177
 //#define INVERT_E_DIR true   // for direct drive extruder v9 set to true, for geared extruder set to false
178
 
178
 
179
-//#define INVERT_X_DIR true    // for Mendel set to false, for Orca set to true
180
-//#define INVERT_Y_DIR false   // for Mendel set to true, for Orca set to false
181
-//#define INVERT_Z_DIR true    // for Mendel set to false, for Orca set to true
182
-//#define INVERT_E_DIR false   // for direct drive extruder v9 set to true, for geared extruder set to false
179
+#define INVERT_X_DIR true     // for Mendel set to false, for Orca set to true
180
+#define INVERT_Y_DIR false    // for Mendel set to true, for Orca set to false
181
+#define INVERT_Z_DIR true     // for Mendel set to false, for Orca set to true
182
+#define INVERT_E_DIR false    // for direct drive extruder v9 set to true, for geared extruder set to false
183
 
183
 
184
 //// ENDSTOP SETTINGS:
184
 //// ENDSTOP SETTINGS:
185
 // Sets direction of endstops when homing; 1=MAX, -1=MIN
185
 // Sets direction of endstops when homing; 1=MAX, -1=MIN
242
 // The watchdog waits for the watchperiod in milliseconds whenever an M104 or M109 increases the target temperature
242
 // The watchdog waits for the watchperiod in milliseconds whenever an M104 or M109 increases the target temperature
243
 // this enables the watchdog interrupt.
243
 // this enables the watchdog interrupt.
244
 //#define USE_WATCHDOG
244
 //#define USE_WATCHDOG
245
-#ifdef USE_WATCHDOG
245
+//#ifdef USE_WATCHDOG
246
   // you cannot reboot on a mega2560 due to a bug in he bootloader. Hence, you have to reset manually, and this is done hereby:
246
   // you cannot reboot on a mega2560 due to a bug in he bootloader. Hence, you have to reset manually, and this is done hereby:
247
 //#define RESET_MANUAL
247
 //#define RESET_MANUAL
248
 //#define WATCHDOG_TIMEOUT 4  //seconds
248
 //#define WATCHDOG_TIMEOUT 4  //seconds
249
-
249
+//#endif
250
 
250
 
251
 // extruder advance constant (s2/mm3)
251
 // extruder advance constant (s2/mm3)
252
 //
252
 //
272
 //#define ULTRA_LCD  //general lcd support, also 16x2
272
 //#define ULTRA_LCD  //general lcd support, also 16x2
273
 //#define SDSUPPORT // Enable SD Card Support in Hardware Console
273
 //#define SDSUPPORT // Enable SD Card Support in Hardware Console
274
 
274
 
275
-//#define ULTIPANEL
275
+#define ULTIPANEL
276
 #ifdef ULTIPANEL
276
 #ifdef ULTIPANEL
277
 //  #define NEWPANEL  //enable this if you have a click-encoder panel
277
 //  #define NEWPANEL  //enable this if you have a click-encoder panel
278
   #define SDSUPPORT
278
   #define SDSUPPORT

Loading…
Cancel
Save