Vert
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
7 additions and
0 deletions
-
Marlin/src/inc/SanityCheck.h
|
@ -3298,6 +3298,13 @@ static_assert( _ARR_TEST(3,0) && _ARR_TEST(3,1) && _ARR_TEST(3,2) |
|
|
#undef _CLEAN_ASSERT |
|
|
#undef _CLEAN_ASSERT |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Sanity check for MIXING_EXTRUDER & DISTINCT_E_FACTORS these are not compatible |
|
|
|
|
|
*/ |
|
|
|
|
|
#if ENABLED(MIXING_EXTRUDER) && ENABLED(DISTINCT_E_FACTORS) |
|
|
|
|
|
#error "MIXING_EXTRUDER can't be used with DISTINCT_E_FACTORS. But you may use SINGLENOZZLE with DISTINCT_E_FACTORS." |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|
* Sanity check for valid stepper driver types |
|
|
* Sanity check for valid stepper driver types |
|
|
*/ |
|
|
*/ |
|
|