Browse Source

Pins E sanity check tweak

pull/1/head
Scott Lahteine 6 years ago
parent
commit
a81763c237
  1. 2
      Marlin/src/pins/pins_FORMBOT_RAPTOR.h
  2. 2
      Marlin/src/pins/pins_FORMBOT_TREX2PLUS.h
  3. 2
      Marlin/src/pins/pins_FORMBOT_TREX3.h
  4. 2
      Marlin/src/pins/pins_REMRAM_V1.h
  5. 2
      Marlin/src/pins/pins_STM32F4.h
  6. 2
      Marlin/src/pins/pins_THE_BORG.h

2
Marlin/src/pins/pins_FORMBOT_RAPTOR.h

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

2
Marlin/src/pins/pins_FORMBOT_TREX2PLUS.h

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

2
Marlin/src/pins/pins_FORMBOT_TREX3.h

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

2
Marlin/src/pins/pins_REMRAM_V1.h

@ -29,7 +29,7 @@
#define EEPROM_EMULATED_WITH_SRAM // Emulate the EEPROM using Backup SRAM
#if E_STEPPERS > 1 || HOTENDS > 1
#if HOTENDS > 1 || E_STEPPERS > 1
#error "RemRam supports only one hotend / E-stepper."
#endif

2
Marlin/src/pins/pins_STM32F4.h

@ -34,7 +34,7 @@
// Ignore temp readings during develpment.
//#define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
#if E_STEPPERS > 2 || HOTENDS > 2
#if HOTENDS > 2 || E_STEPPERS > 2
#error "STM32F4 supports up to 2 hotends / E-steppers."
#endif

2
Marlin/src/pins/pins_THE_BORG.h

@ -32,7 +32,7 @@
// Ignore temp readings during develpment.
#define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
#if E_STEPPERS > 3 || HOTENDS > 3
#if HOTENDS > 3 || E_STEPPERS > 3
#error "The-Borg supports up to 3 hotends / E-steppers."
#endif

Loading…
Cancel
Save