mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-02 15:06:29 +00:00
🩹 Fix edit Z jerk step size (#26650)
Followup to #25514 Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
parent
f6ecdae972
commit
a533e9e637
1 changed files with 3 additions and 0 deletions
|
@ -263,10 +263,13 @@
|
|||
#endif
|
||||
#if NUM_AXES >= 1
|
||||
#define HAS_X_AXIS 1
|
||||
#define HAS_A_AXIS 1
|
||||
#if NUM_AXES >= XY
|
||||
#define HAS_Y_AXIS 1
|
||||
#define HAS_B_AXIS 1
|
||||
#if NUM_AXES >= XYZ
|
||||
#define HAS_Z_AXIS 1
|
||||
#define HAS_C_AXIS 1
|
||||
#if NUM_AXES >= 4
|
||||
#define HAS_I_AXIS 1
|
||||
#if NUM_AXES >= 5
|
||||
|
|
Loading…
Reference in a new issue