Browse Source

Fix up configs a little

Scott Lahteine 10 years ago
parent
commit
84a87a5b1c

+ 11
- 10
Marlin/configurator/config/Configuration.h View File

344
   #define DISABLE_MAX_ENDSTOPS
344
   #define DISABLE_MAX_ENDSTOPS
345
 #endif
345
 #endif
346
 
346
 
347
-// @section homing
347
+// @section machine
348
 
348
 
349
 // For Inverting Stepper Enable Pins (Active Low) use 0, Non Inverting (Active High) use 1
349
 // For Inverting Stepper Enable Pins (Active Low) use 0, Non Inverting (Active High) use 1
350
-// :[0,1]
350
+// :{0:'Active Low',1:'Active High'}
351
 #define X_ENABLE_ON 0
351
 #define X_ENABLE_ON 0
352
 #define Y_ENABLE_ON 0
352
 #define Y_ENABLE_ON 0
353
 #define Z_ENABLE_ON 0
353
 #define Z_ENABLE_ON 0
354
 #define E_ENABLE_ON 0 // For all extruders
354
 #define E_ENABLE_ON 0 // For all extruders
355
 
355
 
356
-// @section machine
357
-
358
 // Disables axis when it's not being used.
356
 // Disables axis when it's not being used.
359
 #define DISABLE_X false
357
 #define DISABLE_X false
360
 #define DISABLE_Y false
358
 #define DISABLE_Y false
367
 
365
 
368
 // @section machine
366
 // @section machine
369
 
367
 
370
-#define INVERT_X_DIR true    // for Mendel set to false, for Orca set to true
371
-#define INVERT_Y_DIR false    // for Mendel set to true, for Orca set to false
372
-#define INVERT_Z_DIR true     // for Mendel set to false, for Orca set to true
368
+// Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way.
369
+#define INVERT_X_DIR true     // Mendel: false
370
+#define INVERT_Y_DIR false    // Mendel: true
371
+#define INVERT_Z_DIR true     // Mendel: false
373
 
372
 
374
 // @section extruder
373
 // @section extruder
375
 
374
 
376
-#define INVERT_E0_DIR false   // for direct drive extruder v9 set to true, for geared extruder set to false
377
-#define INVERT_E1_DIR false    // for direct drive extruder v9 set to true, for geared extruder set to false
378
-#define INVERT_E2_DIR false   // for direct drive extruder v9 set to true, for geared extruder set to false
375
+// For direct drive extruder v9 set to true, for geared extruder set to false.
376
+#define INVERT_E0_DIR false   
377
+#define INVERT_E1_DIR false
378
+#define INVERT_E2_DIR false
379
+#define INVERT_E3_DIR false
379
 
380
 
380
 // @section homing
381
 // @section homing
381
 
382
 

+ 2
- 1
Marlin/configurator/config/Configuration_adv.h View File

95
 //=============================Mechanical Settings===========================
95
 //=============================Mechanical Settings===========================
96
 //===========================================================================
96
 //===========================================================================
97
 
97
 
98
-// @section machine
98
+// @section homing
99
 
99
 
100
 #define ENDSTOPS_ONLY_FOR_HOMING // If defined the endstops will only be used for homing
100
 #define ENDSTOPS_ONLY_FOR_HOMING // If defined the endstops will only be used for homing
101
 
101
 
146
 #endif //End auto min/max positions
146
 #endif //End auto min/max positions
147
 //END AUTOSET LOCATIONS OF LIMIT SWITCHES -ZP
147
 //END AUTOSET LOCATIONS OF LIMIT SWITCHES -ZP
148
 
148
 
149
+// @section extras
149
 
150
 
150
 //#define Z_LATE_ENABLE // Enable Z the last moment. Needed if your Z driver overheats.
151
 //#define Z_LATE_ENABLE // Enable Z the last moment. Needed if your Z driver overheats.
151
 
152
 

Loading…
Cancel
Save