From 1ef8cd0e0968283b2bd8da2c63b686fb724835c1 Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Thu, 10 Jun 2021 09:18:49 -1000 Subject: [PATCH] Config/Dump : Axes now work --- Grbl_Esp32/src/MachineConfig.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Grbl_Esp32/src/MachineConfig.cpp b/Grbl_Esp32/src/MachineConfig.cpp index 5e2434f9..56b92473 100644 --- a/Grbl_Esp32/src/MachineConfig.cpp +++ b/Grbl_Esp32/src/MachineConfig.cpp @@ -310,7 +310,8 @@ void Axes::group(Configuration::HandlerBase& handler) { tmp[1] = '\0'; 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.section(tmp, _axis[a]); } }