0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-22 17:52:57 +00:00

🩹 Fix FT_MOTION compile (#27367)

This commit is contained in:
narno2202 2024-08-26 06:20:11 +02:00 committed by GitHub
parent 9a04c32f7f
commit 2cb252da4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -92,12 +92,12 @@ uint32_t FTMotion::interpIdx = 0; // Index of current data point b
// Shaping variables.
#if HAS_FTM_SHAPING
FTMotion::shaping_t FTMotion::shaping = {
0,
0
#if HAS_X_AXIS
x:{ false, { 0.0f }, { 0.0f }, { 0 }, 0 } // ena, d_zi[], Ai[], Ni[], max_i
, x:{ false, { 0.0f }, { 0.0f }, { 0 }, 0 } // ena, d_zi[], Ai[], Ni[], max_i
#endif
#if HAS_Y_AXIS
y:{ false, { 0.0f }, { 0.0f }, { 0 }, 0 } // ena, d_zi[], Ai[], Ni[], max_i
, y:{ false, { 0.0f }, { 0.0f }, { 0 }, 0 } // ena, d_zi[], Ai[], Ni[], max_i
#endif
};
#endif