1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-31 10:01:48 +02:00

Axes skipped the validate phase

This commit is contained in:
Mitch Bradley
2021-06-25 09:59:16 -10:00
parent 5409c71402
commit 1e7b468fb9

View File

@@ -208,7 +208,8 @@ namespace Machine {
if (handler.handlerType() == Configuration::HandlerType::Runtime || handler.handlerType() == Configuration::HandlerType::Parser || 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::AfterParse ||
handler.handlerType() == Configuration::HandlerType::Validator) {
handler.section(tmp, _axis[a]); handler.section(tmp, _axis[a]);
} }
} }