Browse Source

Fix a couple of simple typos

Scott Lahteine 9 years ago
parent
commit
260bbb3109
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/SanityCheck.h
  2. 1
    1
      Marlin/stepper_indirection.h

+ 1
- 1
Marlin/SanityCheck.h View File

175
  */
175
  */
176
 #if ENABLED(SWITCHING_EXTRUDER)
176
 #if ENABLED(SWITCHING_EXTRUDER)
177
   #if ENABLED(DUAL_X_CARRIAGE)
177
   #if ENABLED(DUAL_X_CARRIAGE)
178
-    #error "SINGLENOZZLE and DUAL_X_CARRIAGE are incompatible."
178
+    #error "SWITCHING_EXTRUDER and DUAL_X_CARRIAGE are incompatible."
179
   #elif EXTRUDERS != 2
179
   #elif EXTRUDERS != 2
180
     #error "SWITCHING_EXTRUDER requires exactly 2 EXTRUDERS."
180
     #error "SWITCHING_EXTRUDER requires exactly 2 EXTRUDERS."
181
   #elif NUM_SERVOS < 1
181
   #elif NUM_SERVOS < 1

+ 1
- 1
Marlin/stepper_indirection.h View File

72
   #define X2_ENABLE_INIT SET_OUTPUT(X2_ENABLE_PIN)
72
   #define X2_ENABLE_INIT SET_OUTPUT(X2_ENABLE_PIN)
73
   #define X2_ENABLE_WRITE(STATE) WRITE(X2_ENABLE_PIN,STATE)
73
   #define X2_ENABLE_WRITE(STATE) WRITE(X2_ENABLE_PIN,STATE)
74
   #define X2_ENABLE_READ READ(X_ENABLE_PIN)
74
   #define X2_ENABLE_READ READ(X_ENABLE_PIN)
75
-#endif // DUAL_X_CARRIAGE
75
+#endif
76
 
76
 
77
 // Y motor
77
 // Y motor
78
 #define Y_STEP_INIT SET_OUTPUT(Y_STEP_PIN)
78
 #define Y_STEP_INIT SET_OUTPUT(Y_STEP_PIN)

Loading…
Cancel
Save