0
0
Fork 0
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:
Vovodroid 2024-01-09 23:42:08 +02:00 committed by GitHub
parent f6ecdae972
commit a533e9e637
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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