From bfc1b0317ca7442f01ddf7ac4cf08aa15322f209 Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Thu, 10 Jun 2021 09:32:01 -1000 Subject: [PATCH] $CD not $DC --- Grbl_Esp32/src/ProcessSettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grbl_Esp32/src/ProcessSettings.cpp b/Grbl_Esp32/src/ProcessSettings.cpp index f9f55f5d..3a79ccc7 100644 --- a/Grbl_Esp32/src/ProcessSettings.cpp +++ b/Grbl_Esp32/src/ProcessSettings.cpp @@ -458,7 +458,7 @@ Error dump_config(const char* value, WebUI::AuthenticationLevel auth_level, WebU // to performing some system state change. Each command is responsible // for decoding its own value string, if it needs one. void make_grbl_commands() { - new GrblCommand("DC", "Config/Dump", dump_config, anyState); + new GrblCommand("CD", "Config/Dump", dump_config, anyState); new GrblCommand("", "Help", show_grbl_help, anyState); new GrblCommand("T", "State", showState, anyState); new GrblCommand("J", "Jog", doJog, idleOrJog);