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:
parent
9a04c32f7f
commit
2cb252da4a
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue