Browse Source

Fix missing backslash in macro

Scott Lahteine 9 years ago
parent
commit
2d099a2c70
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/pins.h

+ 1
- 1
Marlin/pins.h View File

220
   #define Z_MIN_PIN          -1
220
   #define Z_MIN_PIN          -1
221
 #endif
221
 #endif
222
 
222
 
223
-#define SENSITIVE_PINS { 0, 1,
223
+#define SENSITIVE_PINS { 0, 1, \
224
                         X_STEP_PIN, X_DIR_PIN, X_ENABLE_PIN, X_MIN_PIN, X_MAX_PIN, \
224
                         X_STEP_PIN, X_DIR_PIN, X_ENABLE_PIN, X_MIN_PIN, X_MAX_PIN, \
225
                         Y_STEP_PIN, Y_DIR_PIN, Y_ENABLE_PIN, Y_MIN_PIN, Y_MAX_PIN, \
225
                         Y_STEP_PIN, Y_DIR_PIN, Y_ENABLE_PIN, Y_MIN_PIN, Y_MAX_PIN, \
226
                         Z_STEP_PIN, Z_DIR_PIN, Z_ENABLE_PIN, Z_MIN_PIN, Z_MAX_PIN, Z_PROBE_PIN, \
226
                         Z_STEP_PIN, Z_DIR_PIN, Z_ENABLE_PIN, Z_MIN_PIN, Z_MAX_PIN, Z_PROBE_PIN, \

Loading…
Cancel
Save