🧑‍💻 Echo by default in dev mode

This commit is contained in:
Scott Lahteine
2023-10-25 14:27:22 -05:00
parent bcd07c2c91
commit 046439a5a1

View File

@@ -27,7 +27,8 @@
#include "../feature/ethernet.h" #include "../feature/ethernet.h"
#endif #endif
uint8_t marlin_debug_flags = MARLIN_DEBUG_NONE; // Echo commands to the terminal by default in dev mode
uint8_t marlin_debug_flags = TERN(MARLIN_DEV_MODE, MARLIN_DEBUG_ECHO, MARLIN_DEBUG_NONE);
// Commonly-used strings in serial output // Commonly-used strings in serial output
PGMSTR(SP_A_STR, " A"); PGMSTR(SP_B_STR, " B"); PGMSTR(SP_C_STR, " C"); PGMSTR(SP_A_STR, " A"); PGMSTR(SP_B_STR, " B"); PGMSTR(SP_C_STR, " C");