|
150 | 150 | //#define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
|
151 | 151 |
|
152 | 152 | /**
|
153 |
| - * Define the number of coordinated linear axes. |
| 153 | + * Define the number of coordinated axes. |
154 | 154 | * See https://github.com/DerAndere1/Marlin/wiki
|
155 | 155 | * Each linear axis gets its own stepper control and endstop:
|
156 | 156 | *
|
|
182 | 182 | #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
|
183 | 183 | #endif
|
184 | 184 | #if LINEAR_AXES >= 5
|
185 |
| - #define AXIS5_NAME 'B' // :['A', 'B', 'C', 'U', 'V', 'W'] |
| 185 | + #define AXIS5_NAME 'B' // :['B', 'C', 'U', 'V', 'W'] |
186 | 186 | #endif
|
187 | 187 | #if LINEAR_AXES >= 6
|
188 |
| - #define AXIS6_NAME 'C' // :['A', 'B', 'C', 'U', 'V', 'W'] |
| 188 | + #define AXIS6_NAME 'C' // :['C', 'U', 'V', 'W'] |
189 | 189 | #endif
|
190 | 190 | #if LINEAR_AXES >= 7
|
191 |
| - #define AXIS7_NAME 'U' // :['A', 'B', 'C', 'U', 'V', 'W'] |
| 191 | + #define AXIS7_NAME 'U' // :['U', 'V', 'W'] |
192 | 192 | #endif
|
193 | 193 | #if LINEAR_AXES >= 8
|
194 |
| - #define AXIS8_NAME 'V' // :['A', 'B', 'C', 'U', 'V', 'W'] |
| 194 | + #define AXIS8_NAME 'V' // :['V', 'W'] |
195 | 195 | #endif
|
196 | 196 | #if LINEAR_AXES >= 9
|
197 |
| - #define AXIS9_NAME 'W' // :['A', 'B', 'C', 'U', 'V', 'W'] |
| 197 | + #define AXIS9_NAME 'W' // :['W'] |
198 | 198 | #endif
|
199 | 199 |
|
200 | 200 | // @section extruder
|
|
958 | 958 | //#define DISTINCT_E_FACTORS
|
959 | 959 |
|
960 | 960 | /**
|
961 |
| - * Default Axis Steps Per Unit (steps/mm) |
| 961 | + * Default Axis Steps Per Unit (steps/mm for linear axes, steps/° for rotational axes) |
962 | 962 | * Override with M92
|
963 | 963 | * X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
|
964 | 964 | */
|
965 | 965 | #define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 500 }
|
966 | 966 |
|
967 | 967 | /**
|
968 |
| - * Default Max Feed Rate (mm/s) |
| 968 | + * Default Max Feed Rate (mm/s for linear axes, °/s for rotational axes) |
969 | 969 | * Override with M203
|
970 | 970 | * X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
|
971 | 971 | */
|
|
977 | 977 | #endif
|
978 | 978 |
|
979 | 979 | /**
|
980 |
| - * Default Max Acceleration (change/s) change = mm/s |
| 980 | + * Default Max Acceleration (speed change with time) (mm/(s^2) for linear axes, °/(s^2) for rotational axes) |
981 | 981 | * (Maximum start speed for accelerated moves)
|
982 | 982 | * Override with M201
|
983 | 983 | * X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
|
|
990 | 990 | #endif
|
991 | 991 |
|
992 | 992 | /**
|
993 |
| - * Default Acceleration (change/s) change = mm/s |
| 993 | + * Default Acceleration (speed change with time) (mm/(s^2) for linear axes, °/(s^2) for rotational axes) |
994 | 994 | * Override with M204
|
995 | 995 | *
|
996 | 996 | * M204 P Acceleration
|
|
1002 | 1002 | #define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z acceleration for travel (non printing) moves
|
1003 | 1003 |
|
1004 | 1004 | /**
|
1005 |
| - * Default Jerk limits (mm/s) |
| 1005 | + * Default Jerk limits (mm/(s^2)) |
1006 | 1006 | * Override with M205 X Y Z E
|
1007 | 1007 | *
|
1008 | 1008 | * "Jerk" specifies the minimum speed change that requires acceleration.
|
|
1431 | 1431 | #define X_BED_SIZE 200
|
1432 | 1432 | #define Y_BED_SIZE 200
|
1433 | 1433 |
|
1434 |
| -// Travel limits (mm) after homing, corresponding to endstop positions. |
| 1434 | +// Travel limits (mm for linear axes, ° for rotational axes) after homing, corresponding to endstop positions. |
1435 | 1435 | #define X_MIN_POS 0
|
1436 | 1436 | #define Y_MIN_POS 0
|
1437 | 1437 | #define Z_MIN_POS 0
|
|
1818 | 1818 | #define Z_SAFE_HOMING_Y_POINT Y_CENTER // Y point for Z homing
|
1819 | 1819 | #endif
|
1820 | 1820 |
|
1821 |
| -// Homing speeds (mm/min) |
| 1821 | +// Homing speeds (mm/min for linear axes, °/min for rotational axes) |
1822 | 1822 | #define HOMING_FEEDRATE_MM_M { (50*60), (50*60), (4*60) }
|
1823 | 1823 |
|
1824 | 1824 | // Validate that endstops are triggered on homing moves
|
|
0 commit comments