🎨 Apply HAS_MULTI_HOTEND conditional
This commit is contained in:
committed by
Scott Lahteine
parent
c508ecc414
commit
cbc7dadf42
@ -23,7 +23,7 @@
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "CCROBOT-ONLINE MEEB_3DP only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "Creality V4 only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "CREALITY supports up to 1 hotends / E-steppers. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
* Creality v4.5.2 (STM32F103RET6) board pin assignments
|
||||
*/
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "Creality v4.5.2 only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
* Creality v4.5.3 (STM32F103RET6) board pin assignments
|
||||
*/
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "Creality v4.5.3 only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -31,7 +31,7 @@
|
||||
|
||||
#if NOT_TARGET(__STM32F1__, STM32F1xx)
|
||||
#error "Oops! Select an STM32F1 board in 'Tools > Board.'"
|
||||
#elif HOTENDS > 1 || E_STEPPERS > 1
|
||||
#elif HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "FLSUN HiSpeedV1 only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "JGAurora A5S A1 only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
#if NOT_TARGET(__STM32F1__, STM32F1xx)
|
||||
#error "Oops! Select a STM32F1 board in 'Tools > Board.'"
|
||||
#elif HOTENDS > 1 || E_STEPPERS > 1
|
||||
#elif HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "Longer3D only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
* MKS Robin E3 (STM32F103RCT6) board pin assignments
|
||||
*/
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "MKS Robin E3 only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
* MKS Robin E3D (STM32F103RCT6) board pin assignments
|
||||
*/
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "MKS Robin E3D only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
* MKS Robin E3D v1.1 (STM32F103RCT6) board pin assignments
|
||||
*/
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "MKS Robin E3D v1.1 only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "MKS Robin E3P only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#elif HAS_FSMC_TFT
|
||||
#error "MKS Robin E3P doesn't support FSMC-based TFT displays."
|
||||
|
@ -25,7 +25,7 @@
|
||||
* MKS Robin E3 v1.1 (STM32F103RCT6) board pin assignments
|
||||
*/
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "MKS Robin E3 v1.1 only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "MKS Robin Lite only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#if HOTENDS > 1 || E_STEPPERS > 1
|
||||
#if HAS_MULTI_HOTEND || E_STEPPERS > 1
|
||||
#error "MKS Robin mini only supports one hotend / E-stepper. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user