Skip to content

Commit

Permalink
🔨 Warn about Input Shaping + I2S_STEPPER_STREAM (#27051)
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiskeithb authored May 20, 2024
1 parent cc86e9e commit e8d9532
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Marlin/src/inc/Warnings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -788,8 +788,13 @@
/**
* Input Shaping
*/
#if HAS_ZV_SHAPING && ANY(CORE_IS_XY, MARKFORGED_XY, MARKFORGED_YX)
#warning "Input Shaping for CORE / MARKFORGED kinematic axes is still experimental."
#if HAS_ZV_SHAPING
#if ANY(CORE_IS_XY, MARKFORGED_XY, MARKFORGED_YX)
#warning "Input Shaping for CORE / MARKFORGED kinematic axes is still experimental."
#endif
#if ENABLED(I2S_STEPPER_STREAM)
#warning "Input Shaping has not been tested with I2S_STEPPER_STREAM."
#endif
#endif

/**
Expand Down

0 comments on commit e8d9532

Please sign in to comment.