Add sanity check for LED_CONTROL_MENU

Addressing #10569
This commit is contained in:
Scott Lahteine 2018-04-29 18:34:57 -05:00
parent 9e0d99c0c6
commit 616651ff23

View File

@ -1146,6 +1146,13 @@ static_assert(X_MAX_LENGTH >= X_BED_SIZE && Y_MAX_LENGTH >= Y_BED_SIZE,
#error "TEMP_STAT_LEDS requires STAT_LED_RED_PIN or STAT_LED_BLUE_PIN, preferably both."
#endif
/**
* LED Control Menu
*/
#if ENABLED(LED_CONTROL_MENU) && !HAS_COLOR_LEDS
#error "LED_CONTROL_MENU requires BLINKM, RGB_LED, RGBW_LED, PCA9632, or NEOPIXEL_LED."
#endif
/**
* Basic 2-nozzle duplication mode
*/