From eb584d67e3d8c869238eda5ec50141348077c9f5 Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Sat, 10 Jul 2021 23:20:11 -1000 Subject: [PATCH] Infer board: 6-pack if USE_I2S_OUT --- Grbl_Esp32/src/DumpConfig.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Grbl_Esp32/src/DumpConfig.cpp b/Grbl_Esp32/src/DumpConfig.cpp index 16ce2846..dcf099cc 100644 --- a/Grbl_Esp32/src/DumpConfig.cpp +++ b/Grbl_Esp32/src/DumpConfig.cpp @@ -570,7 +570,11 @@ void print_spindle_class() { } } void dump_config() { +#ifdef USE_I2S_OUT + item("board", "6-pack"); +#else item("board", "unknown"); +#endif item("name", MACHINE_NAME); print_stepping(); print_axes();