0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-03-12 01:15:29 +00:00

🩹 Fix edit Z jerk step size ()

Followup to 

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 #endif
#if NUM_AXES >= 1 #if NUM_AXES >= 1
#define HAS_X_AXIS 1 #define HAS_X_AXIS 1
#define HAS_A_AXIS 1
#if NUM_AXES >= XY #if NUM_AXES >= XY
#define HAS_Y_AXIS 1 #define HAS_Y_AXIS 1
#define HAS_B_AXIS 1
#if NUM_AXES >= XYZ #if NUM_AXES >= XYZ
#define HAS_Z_AXIS 1 #define HAS_Z_AXIS 1
#define HAS_C_AXIS 1
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define HAS_I_AXIS 1 #define HAS_I_AXIS 1
#if NUM_AXES >= 5 #if NUM_AXES >= 5