Browse Source

Fix axis name in serial output (#18522)

vanilla_fb_2.0.x
Giuliano Zaro 4 years ago
committed by GitHub
parent
commit
7448b65567
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/core/types.h

2
Marlin/src/core/types.h

@ -501,4 +501,4 @@ struct XYZEval {
#undef FI
const xyze_char_t axis_codes { 'X', 'Y', 'Z', 'E' };
#define XYZ_CHAR(A) ('X' + char(A))
#define XYZ_CHAR(A) ((char)('X' + A))

Loading…
Cancel
Save