🔧 Move non-DUE conditions

This commit is contained in:
Scott Lahteine 2023-06-19 15:05:51 -05:00
parent 733209f9a2
commit 91401d7e5f
2 changed files with 7 additions and 1 deletions

View file

@ -127,6 +127,13 @@ static_assert(COUNT(arm) == LOGICAL_AXES, "AXIS_RELATIVE_MODES must contain " _L
#undef _ISMAX_1
#undef _ISSNS_1
/**
* RADDS is forbidden for non-DUE boards, for now.
*/
#if ENABLED(RADDS_DISPLAY) && !defined(__SAM3X8E__)
#error "RADDS_DISPLAY is currently only incompatible with DUE boards."
#endif
/**
* Heated Bed requirements
*/

View file

@ -153,7 +153,6 @@
#define LCD_PINS_EN 15
#define LCD_PINS_D4 19
#define BEEPER_PIN 64
#undef UI_VOLTAGE_LEVEL
#define UI_VOLTAGE_LEVEL 1
#endif