Skip to content

Commit bf8618d

Browse files
kisslorandLCh-77
authored andcommitted
Fix axis string 'N' (MarlinFirmware#24259)
Followup to 167672d
1 parent 3254eee commit bf8618d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/core/serial.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ PGMSTR(SP_P_STR, " P"); PGMSTR(SP_T_STR, " T"); PGMSTR(NUL_STR, "");
3535

3636
#define _N_STR(N) PGMSTR(N##_STR, STR_##N);
3737
#define _N_LBL(N) PGMSTR(N##_LBL, STR_##N ":");
38-
#define _SP_N_STR(N) PGMSTR(SP_##N##_STR, STR_##N ":");
38+
#define _SP_N_STR(N) PGMSTR(SP_##N##_STR, " " STR_##N);
3939
#define _SP_N_LBL(N) PGMSTR(SP_##N##_LBL, " " STR_##N ":");
4040
MAP(_N_STR, LOGICAL_AXIS_NAMES); MAP(_SP_N_STR, LOGICAL_AXIS_NAMES);
4141
MAP(_N_LBL, LOGICAL_AXIS_NAMES); MAP(_SP_N_LBL, LOGICAL_AXIS_NAMES);

0 commit comments

Comments
 (0)