From 1e7b468fb9d4a207d2dc36734f975e345ca4efc5 Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Fri, 25 Jun 2021 09:59:16 -1000 Subject: [PATCH] Axes skipped the validate phase --- Grbl_Esp32/src/Machine/Axes.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Grbl_Esp32/src/Machine/Axes.cpp b/Grbl_Esp32/src/Machine/Axes.cpp index 753d4b04..659928e9 100644 --- a/Grbl_Esp32/src/Machine/Axes.cpp +++ b/Grbl_Esp32/src/Machine/Axes.cpp @@ -208,7 +208,8 @@ namespace Machine { if (handler.handlerType() == Configuration::HandlerType::Runtime || handler.handlerType() == Configuration::HandlerType::Parser || handler.handlerType() == Configuration::HandlerType::AfterParse || - handler.handlerType() == Configuration::HandlerType::Generator) { + handler.handlerType() == Configuration::HandlerType::AfterParse || + handler.handlerType() == Configuration::HandlerType::Validator) { handler.section(tmp, _axis[a]); } }