Browse Source

Pins E sanity check tweak

Scott Lahteine 6 years ago
parent
commit
a81763c237

+ 1
- 1
Marlin/src/pins/pins_FORMBOT_RAPTOR.h View File

28
   #error "Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu."
28
   #error "Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu."
29
 #endif
29
 #endif
30
 
30
 
31
-#if E_STEPPERS > 3 || HOTENDS > 3
31
+#if HOTENDS > 3 || E_STEPPERS > 3
32
   #error "Formbot supports up to 3 hotends / E-steppers. Comment this line to keep going."
32
   #error "Formbot supports up to 3 hotends / E-steppers. Comment this line to keep going."
33
 #endif
33
 #endif
34
 
34
 

+ 1
- 1
Marlin/src/pins/pins_FORMBOT_TREX2PLUS.h View File

28
   #error "Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu."
28
   #error "Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu."
29
 #endif
29
 #endif
30
 
30
 
31
-#if E_STEPPERS > 2 || HOTENDS > 2
31
+#if HOTENDS > 2 || E_STEPPERS > 2
32
   #error "Formbot supports up to 2 hotends / E-steppers. Comment this line to keep going."
32
   #error "Formbot supports up to 2 hotends / E-steppers. Comment this line to keep going."
33
 #endif
33
 #endif
34
 
34
 

+ 1
- 1
Marlin/src/pins/pins_FORMBOT_TREX3.h View File

28
   #error "Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu."
28
   #error "Oops!  Make sure you have 'Arduino Mega' selected from the 'Tools -> Boards' menu."
29
 #endif
29
 #endif
30
 
30
 
31
-#if E_STEPPERS > 2 || HOTENDS > 2
31
+#if HOTENDS > 2 || E_STEPPERS > 2
32
   #error "Formbot supports up to 2 hotends / E-steppers. Comment this line to keep going."
32
   #error "Formbot supports up to 2 hotends / E-steppers. Comment this line to keep going."
33
 #endif
33
 #endif
34
 
34
 

+ 1
- 1
Marlin/src/pins/pins_REMRAM_V1.h View File

29
 
29
 
30
 #define EEPROM_EMULATED_WITH_SRAM // Emulate the EEPROM using Backup SRAM
30
 #define EEPROM_EMULATED_WITH_SRAM // Emulate the EEPROM using Backup SRAM
31
 
31
 
32
-#if E_STEPPERS > 1 || HOTENDS > 1
32
+#if HOTENDS > 1 || E_STEPPERS > 1
33
   #error "RemRam supports only one hotend / E-stepper."
33
   #error "RemRam supports only one hotend / E-stepper."
34
 #endif
34
 #endif
35
 
35
 

+ 1
- 1
Marlin/src/pins/pins_STM32F4.h View File

34
 // Ignore temp readings during develpment.
34
 // Ignore temp readings during develpment.
35
 //#define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
35
 //#define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
36
 
36
 
37
-#if E_STEPPERS > 2 || HOTENDS > 2
37
+#if HOTENDS > 2 || E_STEPPERS > 2
38
   #error "STM32F4 supports up to 2 hotends / E-steppers."
38
   #error "STM32F4 supports up to 2 hotends / E-steppers."
39
 #endif
39
 #endif
40
 
40
 

+ 1
- 1
Marlin/src/pins/pins_THE_BORG.h View File

32
 // Ignore temp readings during develpment.
32
 // Ignore temp readings during develpment.
33
 #define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
33
 #define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
34
 
34
 
35
-#if E_STEPPERS > 3 || HOTENDS > 3
35
+#if HOTENDS > 3 || E_STEPPERS > 3
36
   #error "The-Borg supports up to 3 hotends / E-steppers."
36
   #error "The-Borg supports up to 3 hotends / E-steppers."
37
 #endif
37
 #endif
38
 
38
 

Loading…
Cancel
Save