Skip to content

Commit

Permalink
πŸ§‘β€πŸ’» Echo by default in dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Oct 25, 2023
1 parent bcd07c2 commit 046439a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Marlin/src/core/serial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
#include "../feature/ethernet.h"
#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
PGMSTR(SP_A_STR, " A"); PGMSTR(SP_B_STR, " B"); PGMSTR(SP_C_STR, " C");
Expand Down

0 comments on commit 046439a

Please sign in to comment.