|
90 | 90 | // Choose the name from boards.h that matches your setup |
91 | 91 | #ifndef MOTHERBOARD |
92 | 92 | #define MOTHERBOARD BOARD_BTT_OCTOPUS_V1_1 |
93 | | - // add Z2 as E4 for auto allocation |
94 | | - #define E4_STEP_PIN PG4 // MOTOR 3 |
95 | | - #define E4_DIR_PIN PC1 |
96 | | - #define E4_ENABLE_PIN PA0 |
97 | | - // add endstop pins |
98 | | - #define I_MIN_PIN PG11 // Z2-STOP |
99 | | - #define J_MIN_PIN PG12 // E0DET |
100 | | - #define K_MIN_PIN PG13 // E1DET |
101 | | - #define U_MIN_PIN PG14 // E2DET |
102 | | - #define V_MIN_PIN PG15 // E3DET |
103 | 93 | #endif |
104 | 94 |
|
| 95 | +// E4 for dual axis auto-assignment |
| 96 | +#define E4_STEP_PIN PG4 // MOTOR 3 |
| 97 | +#define E4_DIR_PIN PC1 |
| 98 | +#define E4_ENABLE_PIN PA0 |
| 99 | + |
| 100 | +// Endstop pins |
| 101 | +#define I_MIN_PIN PG11 // Z2-STOP |
| 102 | +#define J_MIN_PIN PG12 // E0DET |
| 103 | +#define K_MIN_PIN PG13 // E1DET |
| 104 | +#define U_MIN_PIN PG14 // E2DET |
| 105 | +#define V_MIN_PIN PG15 // E3DET |
| 106 | + |
105 | 107 | /** |
106 | 108 | * Select the serial port on the board to use for communication with the host. |
107 | 109 | * This allows the connection of wireless adapters (for instance) to non-default port pins. |
|
1215 | 1217 | * M204 I Angular Acceleration |
1216 | 1218 | * M204 J Angular Travel Acceleration |
1217 | 1219 | */ |
1218 | | -#define DEFAULT_ACCELERATION 3000 // X, Y, Z and E acceleration for printing moves |
1219 | | -#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration for retracts |
1220 | | -#define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z acceleration for travel (non printing) moves |
| 1220 | +#define DEFAULT_ACCELERATION 3000 // X, Y, Z ... and E acceleration for printing moves |
| 1221 | +#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration for retracts |
| 1222 | +#define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z ... acceleration for travel (non printing) moves |
1221 | 1223 | #if ENABLED(AXIS4_ROTATES) |
1222 | 1224 | #define DEFAULT_ANGULAR_ACCELERATION 3000 // I, J, K acceleration for rotational-only printing moves |
1223 | 1225 | #define DEFAULT_ANGULAR_TRAVEL_ACCELERATION 3000 // I, J, K acceleration for rotational-only travel (non printing) moves |
|
0 commit comments