From 438a87eba86125218894efff6b829113487fea46 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 6 Feb 2016 21:18:02 -0800 Subject: [PATCH] Sanity check deprecated SDSLOW, SDEXTRASLOW --- Marlin/SanityCheck.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Marlin/SanityCheck.h b/Marlin/SanityCheck.h index 6831380bc8..46aaef675d 100644 --- a/Marlin/SanityCheck.h +++ b/Marlin/SanityCheck.h @@ -361,6 +361,10 @@ #error HAS_AUTOMATIC_VERSIONING deprecated - use USE_AUTOMATIC_VERSIONING instead #elif defined(ENABLE_AUTO_BED_LEVELING) #error ENABLE_AUTO_BED_LEVELING deprecated - use AUTO_BED_LEVELING_FEATURE instead +#elif defined(SDSLOW) + #error SDSLOW deprecated - set SPI_SPEED to SPI_HALF_SPEED instead +#elif defined(SDEXTRASLOW) + #error SDEXTRASLOW deprecated - set SPI_SPEED to SPI_QUARTER_SPEED instead #endif #endif //SANITYCHECK_H