From 75b2255dce803ec12fe34129862df2d9001c2740 Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Sat, 26 Jun 2021 07:43:40 -1000 Subject: [PATCH] Fixed $cd for axes A typo in 1e7b468fb broke it --- Grbl_Esp32/src/Machine/Axes.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Grbl_Esp32/src/Machine/Axes.cpp b/Grbl_Esp32/src/Machine/Axes.cpp index 659928e9..f75d57ff 100644 --- a/Grbl_Esp32/src/Machine/Axes.cpp +++ b/Grbl_Esp32/src/Machine/Axes.cpp @@ -209,6 +209,7 @@ namespace Machine { if (handler.handlerType() == Configuration::HandlerType::Runtime || handler.handlerType() == Configuration::HandlerType::Parser || handler.handlerType() == Configuration::HandlerType::AfterParse || handler.handlerType() == Configuration::HandlerType::AfterParse || + handler.handlerType() == Configuration::HandlerType::Generator || handler.handlerType() == Configuration::HandlerType::Validator) { handler.section(tmp, _axis[a]); }