Browse Source
Throw an error if ENCODER_PULSES_PER_STEP < -1
pull/1/head
João Brázio
9 years ago
No known key found for this signature in database
GPG Key ID: F62CFD37DFFDB540
1 changed files with
4 additions and
0 deletions
-
Marlin/SanityCheck.h
|
@ -290,6 +290,10 @@ |
|
|
#error ULTIPANEL requires some kind of encoder. |
|
|
#error ULTIPANEL requires some kind of encoder. |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if ENCODER_PULSES_PER_STEP < 0 |
|
|
|
|
|
#error ENCODER_PULSES_PER_STEP should not be negative, use REVERSE_MENU_DIRECTION instead |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|
* Delta has limited bed leveling options |
|
|
* Delta has limited bed leveling options |
|
|
*/ |
|
|
*/ |
|
|