From ca6c6ec4ca82162fe5e8b8aafc122c1a2f4b4894 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Br=C3=A1zio?= Date: Mon, 11 Apr 2016 19:03:06 +0100 Subject: [PATCH] Versions of Arduino IDE prior to 1.6.0 are no longer supported --- Marlin/SanityCheck.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/SanityCheck.h b/Marlin/SanityCheck.h index b1a9c7b77..901da3b59 100644 --- a/Marlin/SanityCheck.h +++ b/Marlin/SanityCheck.h @@ -34,8 +34,8 @@ * release we will stop supporting old IDE versions and will require user * action to proceed with compilation in such environments. */ -#if !defined(ARDUINO) || ARDUINO < 10500 - #warning Versions of Arduino IDE prior to 1.5 are no longer supported, please update your toolkit. +#if !defined(ARDUINO) || ARDUINO < 10600 + #error Versions of Arduino IDE prior to 1.6.0 are no longer supported, please update your toolkit. #endif /**