Skip to content

Commit

Permalink
🩹 Fix FT_MOTION compile (MarlinFirmware#27367)
Browse files Browse the repository at this point in the history
  • Loading branch information
narno2202 authored Aug 26, 2024
1 parent 9a04c32 commit 2cb252d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Marlin/src/module/ft_motion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2cb252d

Please sign in to comment.