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

$CD not $DC

This commit is contained in:
Mitch Bradley
2021-06-10 09:32:01 -10:00
parent 0a91700b0c
commit bfc1b0317c

View File

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