Jason Smith
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
24 additions and
0 deletions
-
Marlin/src/HAL/LPC1768/inc/SanityCheck.h
-
Marlin/src/HAL/STM32/inc/SanityCheck.h
-
Marlin/src/HAL/STM32F1/inc/SanityCheck.h
|
@ -251,3 +251,11 @@ static_assert(DISABLED(BAUD_RATE_GCODE), "BAUD_RATE_GCODE is not yet supported o |
|
|
|
|
|
|
|
|
#undef USEDI2CDEV_M |
|
|
#undef USEDI2CDEV_M |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED) |
|
|
|
|
|
#error "SERIAL_STATS_MAX_RX_QUEUED is not supported on this platform." |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(SERIAL_STATS_DROPPED_RX) |
|
|
|
|
|
#error "SERIAL_STATS_DROPPED_RX is not supported on this platform." |
|
|
|
|
|
#endif |
|
|
|
@ -48,3 +48,11 @@ |
|
|
#if !defined(STM32F4xx) && ENABLED(FLASH_EEPROM_LEVELING) |
|
|
#if !defined(STM32F4xx) && ENABLED(FLASH_EEPROM_LEVELING) |
|
|
#error "FLASH_EEPROM_LEVELING is currently only supported on STM32F4 hardware." |
|
|
#error "FLASH_EEPROM_LEVELING is currently only supported on STM32F4 hardware." |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED) |
|
|
|
|
|
#error "SERIAL_STATS_MAX_RX_QUEUED is not supported on this platform." |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(SERIAL_STATS_DROPPED_RX) |
|
|
|
|
|
#error "SERIAL_STATS_DROPPED_RX is not supported on this platform." |
|
|
|
|
|
#endif |
|
|
|
@ -49,3 +49,11 @@ |
|
|
#endif |
|
|
#endif |
|
|
#error "SDCARD_EEPROM_EMULATION requires SDSUPPORT. Enable SDSUPPORT or choose another EEPROM emulation." |
|
|
#error "SDCARD_EEPROM_EMULATION requires SDSUPPORT. Enable SDSUPPORT or choose another EEPROM emulation." |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(SERIAL_STATS_MAX_RX_QUEUED) |
|
|
|
|
|
#error "SERIAL_STATS_MAX_RX_QUEUED is not supported on this platform." |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(SERIAL_STATS_DROPPED_RX) |
|
|
|
|
|
#error "SERIAL_STATS_DROPPED_RX is not supported on this platform." |
|
|
|
|
|
#endif |
|
|