|
@@ -3034,8 +3034,10 @@ static_assert( _ARR_TEST(3,0) && _ARR_TEST(3,1) && _ARR_TEST(3,2)
|
3034
|
3034
|
"BACKLASH_COMPENSATION can only apply to " STRINGIFY(NORMAL_AXIS) " on a MarkForged system.");
|
3035
|
3035
|
#elif IS_CORE
|
3036
|
3036
|
constexpr float backlash_arr[] = BACKLASH_DISTANCE_MM;
|
3037
|
|
- static_assert(!backlash_arr[CORE_AXIS_1] && !backlash_arr[CORE_AXIS_2],
|
|
3037
|
+ #ifndef CORE_BACKLASH
|
|
3038
|
+ static_assert(!backlash_arr[CORE_AXIS_1] && !backlash_arr[CORE_AXIS_2],
|
3038
|
3039
|
"BACKLASH_COMPENSATION can only apply to " STRINGIFY(NORMAL_AXIS) " with your CORE system.");
|
|
3040
|
+ #endif
|
3039
|
3041
|
#endif
|
3040
|
3042
|
#endif
|
3041
|
3043
|
|