1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-09-01 02:21:46 +02:00

Fixed $cd for axes

A typo in 1e7b468fb broke it
This commit is contained in:
Mitch Bradley
2021-06-26 07:43:40 -10:00
parent 7f44d21c01
commit 75b2255dce

View File

@@ -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]);
}