Patch pins files hotends/e-steppers sanity check
This commit is contained in:
parent
b23aef5b8d
commit
edf18977c1
@ -24,8 +24,8 @@
|
||||
* AZTEEG_X3 Arduino Mega with RAMPS v1.4 pin assignments
|
||||
*/
|
||||
|
||||
#if HOTENDS > 2
|
||||
#error "Azteeg X3 supports up to 2 hotends. Comment this line to keep going."
|
||||
#if HOTENDS > 2 || E_STEPPERS > 2
|
||||
#error "Azteeg X3 supports up to 2 hotends / E-steppers. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
#define BOARD_NAME "Azteeg X3"
|
||||
|
@ -24,8 +24,8 @@
|
||||
* BAM&DICE Due (Arduino Mega) pin assignments
|
||||
*/
|
||||
|
||||
#if HOTENDS > 2
|
||||
#error "2PrintBeta Due supports up to 2 hotends. Comment this line to keep going."
|
||||
#if HOTENDS > 2 || E_STEPPERS > 2
|
||||
#error "2PrintBeta Due supports up to 2 hotends / E-steppers. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
#define BOARD_NAME "2PrintBeta Due"
|
||||
|
@ -24,8 +24,8 @@
|
||||
* FELIXprinters v2.0/3.0 (RAMPS v1.4) pin assignments
|
||||
*/
|
||||
|
||||
#if HOTENDS > 2
|
||||
#error "Felix 2.0+ supports up to 2 hotends. Comment this line to keep going."
|
||||
#if HOTENDS > 2 || E_STEPPERS > 2
|
||||
#error "Felix 2.0+ supports up to 2 hotends / E-steppers. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
#define BOARD_NAME "Felix 2.0+"
|
||||
|
@ -28,8 +28,8 @@
|
||||
#error "Oops! Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu."
|
||||
#endif
|
||||
|
||||
#if E_STEPPERS > 2 || HOTENDS > 2
|
||||
#error "Mega Controller supports up to 2 hotends / E-steppers. Comment this line to keep going."
|
||||
#if HOTENDS > 2 || E_STEPPERS > 2
|
||||
#error "Mega Controller supports up to 2 hotends / E-steppers. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
#define BOARD_NAME "Mega Controller"
|
||||
|
@ -28,8 +28,8 @@
|
||||
#error "Oops! Make sure you have 'Minitronics' selected from the 'Tools -> Boards' menu."
|
||||
#endif
|
||||
|
||||
#if HOTENDS > 2
|
||||
#error "Minitronics supports up to 2 hotends. Comment this line to keep going."
|
||||
#if HOTENDS > 2 || E_STEPPERS > 2
|
||||
#error "Minitronics supports up to 2 hotends / E-steppers. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
#define BOARD_NAME "Minitronics v1.0 / v1.1"
|
||||
|
@ -29,8 +29,8 @@
|
||||
* MKS v1.4 (Extruder, Extruder, Fan, Bed)
|
||||
*/
|
||||
|
||||
#if HOTENDS > 2
|
||||
#error "MKS 1.3/1.4 supports up to 2 hotends. Comment this line to keep going."
|
||||
#if HOTENDS > 2 || E_STEPPERS > 2
|
||||
#error "MKS 1.3/1.4 supports up to 2 hotends / E-steppers. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
#define BOARD_NAME "MKS > v1.3"
|
||||
|
@ -24,8 +24,8 @@
|
||||
* MKS BASE 1.0 – Arduino Mega2560 with RAMPS v1.4 pin assignments
|
||||
*/
|
||||
|
||||
#if HOTENDS > 2
|
||||
#error "MKS BASE 1.0 supports up to 2 hotends. Comment this line to keep going."
|
||||
#if HOTENDS > 2 || E_STEPPERS > 2
|
||||
#error "MKS BASE 1.0 supports up to 2 hotends / E-steppers. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
#define BOARD_NAME "MKS BASE 1.0"
|
||||
|
@ -28,8 +28,8 @@
|
||||
#error "Oops! Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu."
|
||||
#endif
|
||||
|
||||
#if E_STEPPERS > 3 || HOTENDS > 3
|
||||
#error "RUMBA supports up to 3 hotends / E-steppers. Comment this line to keep going."
|
||||
#if HOTENDS > 3 || E_STEPPERS > 3
|
||||
#error "RUMBA supports up to 3 hotends / E-steppers. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
#define DEFAULT_MACHINE_NAME "Rumba"
|
||||
|
@ -24,8 +24,8 @@
|
||||
* Sainsmart 2-in-1 pin assignments
|
||||
*/
|
||||
|
||||
#if HOTENDS > 2
|
||||
#error "Sainsmart 2-in-1 supports up to 2 hotends. Comment this line to keep going."
|
||||
#if HOTENDS > 2 || E_STEPPERS > 2
|
||||
#error "Sainsmart 2-in-1 supports up to 2 hotends / E-steppers. Comment out this line to continue."
|
||||
#endif
|
||||
|
||||
#define BOARD_NAME "Sainsmart"
|
||||
|
Loading…
Reference in New Issue
Block a user