From 5a99c38d83a973658a82d6eea6aaa33a8efbd94a Mon Sep 17 00:00:00 2001 From: Vertabreaker Date: Fri, 13 Dec 2019 10:00:35 -0500 Subject: [PATCH] tweak error messages --- Marlin/Configuration.h | 6 +++--- Marlin/Start_here.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 067b5a42e..93b71241a 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -164,7 +164,7 @@ #elif ENABLED (GTM201) #define MOTHERBOARD BOARD_GTM32_REV_B #else - #error No mainboard selected + #error No mainboard defined #endif #endif @@ -875,7 +875,7 @@ #define E1_DRIVER_TYPE #define E2_DRIVER_TYPE #else - #error No drivers selected + #error No drivers defined #endif // Enable this feature if all enabled endstop pins are interrupt-capable. @@ -1079,7 +1079,7 @@ #define PROBE_MANUALLY #define MANUAL_PROBE_START_Z 0.2 #else -#error No probe selected. +#error No probe defined #endif /** diff --git a/Marlin/Start_here.h b/Marlin/Start_here.h index 1d90732a8..df4a95541 100644 --- a/Marlin/Start_here.h +++ b/Marlin/Start_here.h @@ -59,7 +59,7 @@ #define XYZESTEPS { 80, 80, 400, 430 } // geared extruder found on M & T variants. //#define XYZESTEPS { 80, 80, 2560,430 } // M8 Z rod steps 2560 found on old I3pro #else -#error No steps selected +#error No steps defined #endif //-------------------------------------------------------------------------------------------------------------------------------------------------------- //Step 6) enable 1 probe type & edit other bed leveling options. @@ -81,6 +81,6 @@ #elif ENABLED (MIX) && ENABLED (CYCLOPS) && ENABLED (DUALEX) && ENABLED (MIXT) && ENABLED (CYCLOPST) && ENABLED (TRIEX) #define NPO { -40, 0, 0 } // Nozzle To Probe offset XYZ A10M/A20M calibration suggested. #else -#error No probe offsets selected +#error No probe offsets defined #endif //--------------------------------------------------------------------------------------------------------------------------------------------------------