Add sanity checks for EMERGENCY_PARSER

This commit is contained in:
Scott Lahteine 2018-04-24 09:24:26 -05:00
parent f06c3c38b9
commit a3ce8a3fcd
6 changed files with 20 additions and 4 deletions

View file

@ -74,3 +74,7 @@
|| MB(RAMPS_14_RE_ARM_SF)) || MB(RAMPS_14_RE_ARM_SF))
#error "Re-ARM with REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER and TMC2130 require TMC_USE_SW_SPI" #error "Re-ARM with REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER and TMC2130 require TMC_USE_SW_SPI"
#endif #endif
#if ENABLED(EMERGENCY_PARSER)
#error "EMERGENCY_PARSER is not yet implemented for LPC1768. Disable EMERGENCY_PARSER to continue."
#endif

View file

@ -66,3 +66,7 @@
#endif #endif
#endif #endif
#endif // SPINDLE_LASER_ENABLE #endif // SPINDLE_LASER_ENABLE
#if ENABLED(EMERGENCY_PARSER)
#error "EMERGENCY_PARSER is not yet implemented for STM32F1. Disable EMERGENCY_PARSER to continue."
#endif

View file

@ -64,3 +64,7 @@
#endif #endif
#endif #endif
#endif // SPINDLE_LASER_ENABLE #endif // SPINDLE_LASER_ENABLE
#if ENABLED(EMERGENCY_PARSER)
#error "EMERGENCY_PARSER is not yet implemented for STM32F4. Disable EMERGENCY_PARSER to continue."
#endif

View file

@ -64,3 +64,7 @@
#endif #endif
#endif #endif
#endif // SPINDLE_LASER_ENABLE #endif // SPINDLE_LASER_ENABLE
#if ENABLED(EMERGENCY_PARSER)
#error "EMERGENCY_PARSER is not yet implemented for STM32F7. Disable EMERGENCY_PARSER to continue."
#endif

View file

@ -24,6 +24,6 @@
* Test TEENSY35_36 specific configuration values for errors at compile-time. * Test TEENSY35_36 specific configuration values for errors at compile-time.
*/ */
/** #if ENABLED(EMERGENCY_PARSER)
* Require gcc 4.7 or newer (first included with Arduino 1.6.8) for C++11 features. #error "EMERGENCY_PARSER is not yet implemented for Teensy 3.5/3.6. Disable EMERGENCY_PARSER to continue."
*/ #endif