Skip to content

Commit d557104

Browse files
committed
minor edits
1 parent e9c6b19 commit d557104

2 files changed

Lines changed: 17 additions & 15 deletions

File tree

config/examples/linear_axes/Octopus 8 LINEAR_AXES/Configuration.h

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -90,18 +90,20 @@
9090
// Choose the name from boards.h that matches your setup
9191
#ifndef MOTHERBOARD
9292
#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
10393
#endif
10494

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+
105107
/**
106108
* Select the serial port on the board to use for communication with the host.
107109
* This allows the connection of wireless adapters (for instance) to non-default port pins.
@@ -1215,9 +1217,9 @@
12151217
* M204 I Angular Acceleration
12161218
* M204 J Angular Travel Acceleration
12171219
*/
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
12211223
#if ENABLED(AXIS4_ROTATES)
12221224
#define DEFAULT_ANGULAR_ACCELERATION 3000 // I, J, K acceleration for rotational-only printing moves
12231225
#define DEFAULT_ANGULAR_TRAVEL_ACCELERATION 3000 // I, J, K acceleration for rotational-only travel (non printing) moves

config/examples/linear_axes/Octopus 8 LINEAR_AXES/Configuration_adv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1086,8 +1086,8 @@
10861086
#define DISABLE_INACTIVE_E true
10871087

10881088
// Default Minimum Feedrates for printing and travel moves
1089-
#define DEFAULT_MINIMUMFEEDRATE 0.0 // (mm/s. °/s for rotational-only moves) Minimum feedrate. Set with M205 S.
1090-
#define DEFAULT_MINTRAVELFEEDRATE 0.0 // (mm/s. °/s for rotational-only moves) Minimum travel feedrate. Set with M205 T.
1089+
#define DEFAULT_MINIMUMFEEDRATE 0.0 // (mm/s) Minimum feedrate. Set with M205 S.
1090+
#define DEFAULT_MINTRAVELFEEDRATE 0.0 // (mm/s) Minimum travel feedrate. Set with M205 T.
10911091
#if HAS_ROTATIONAL_AXES
10921092
#define DEFAULT_ANGULAR_MINIMUMFEEDRATE 0.0 // (°/s) Minimum feedrate for rotational-only moves. Set with M205 P.
10931093
#define DEFAULT_ANGULAR_MINTRAVELFEEDRATE 0.0 // (°/s) Minimum travel feedrate for rotational-only moves. Set with M205 Q.

0 commit comments

Comments
 (0)