0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-06-29 10:20:55 +00:00

IDEX clean up ()

This commit is contained in:
Roxy-3D 2018-09-02 10:18:59 -05:00 committed by GitHub
parent 8c11220042
commit 7680b64aa6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 4517 additions and 53 deletions
Marlin/src/module

View file

@ -231,6 +231,9 @@ int8_t Stepper::count_direction[NUM_AXIS] = { 0, 0, 0, 0 };
#define X_APPLY_DIR(v,ALWAYS) \
if (extruder_duplication_enabled || ALWAYS) { \
X_DIR_WRITE(v); \
if (symmetric_duplication_mode) \
X2_DIR_WRITE(!v); \
else \
X2_DIR_WRITE(v); \
} \
else { \