1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-29 23:07:42 +00:00

🩹 Fix shaping init (#27365)

This commit is contained in:
marbocub 2024-08-24 13:45:46 +09:00 committed by GitHub
parent 934ac24ad8
commit 02ed020f3f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -93,9 +93,9 @@ uint32_t FTMotion::interpIdx = 0; // Index of current data point b
#if HAS_X_AXIS
FTMotion::shaping_t FTMotion::shaping = {
0,
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
#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