Fix TERN typo, EXTRA_PROBING
Co-Authored-By: Matthew Kennedy <mattkenn4545@gmail.com>
This commit is contained in:
@ -605,7 +605,7 @@
|
||||
#define PROBE_TRIGGERED_WHEN_STOWED_TEST 1 // Extra test for Allen Key Probe
|
||||
#endif
|
||||
#if MULTIPLE_PROBING > 1
|
||||
#if EXTRA_PROBING
|
||||
#if EXTRA_PROBING > 0
|
||||
#define TOTAL_PROBING (MULTIPLE_PROBING + EXTRA_PROBING)
|
||||
#else
|
||||
#define TOTAL_PROBING MULTIPLE_PROBING
|
||||
|
@ -1285,8 +1285,8 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
|
||||
#error "Probes need Z_AFTER_PROBING >= 0."
|
||||
#endif
|
||||
|
||||
#if MULTIPLE_PROBING || EXTRA_PROBING
|
||||
#if !MULTIPLE_PROBING
|
||||
#if MULTIPLE_PROBING > 0 || EXTRA_PROBING > 0
|
||||
#if MULTIPLE_PROBING == 0
|
||||
#error "EXTRA_PROBING requires MULTIPLE_PROBING."
|
||||
#elif MULTIPLE_PROBING < 2
|
||||
#error "MULTIPLE_PROBING must be 2 or more."
|
||||
|
Reference in New Issue
Block a user