Skip to content

Commit fab9757

Browse files
thinkyheadLuca Fusari
authored andcommitted
✨ EDITABLE_HOMING_FEEDRATE / M210 (MarlinFirmware#27456)
1 parent 9b94706 commit fab9757

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

Marlin/src/core/language.h

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,37 @@
359359
#define STR_Z3 STR_C "3"
360360
#define STR_Z4 STR_C "4"
361361

362+
//
363+
// General axis names
364+
//
365+
#if HAS_X_AXIS
366+
#define AXIS1_NAME 'X'
367+
#endif
368+
#if HAS_Y_AXIS
369+
#define AXIS2_NAME 'Y'
370+
#endif
371+
#if HAS_Z_AXIS
372+
#define AXIS3_NAME 'Z'
373+
#endif
374+
#define STR_X "X"
375+
#define STR_Y "Y"
376+
#define STR_Z "Z"
377+
#define STR_E "E"
378+
#if IS_KINEMATIC
379+
#define STR_A "A"
380+
#define STR_B "B"
381+
#define STR_C "C"
382+
#else
383+
#define STR_A STR_X
384+
#define STR_B STR_Y
385+
#define STR_C STR_Z
386+
#endif
387+
#define STR_X2 STR_A "2"
388+
#define STR_Y2 STR_B "2"
389+
#define STR_Z2 STR_C "2"
390+
#define STR_Z3 STR_C "3"
391+
#define STR_Z4 STR_C "4"
392+
362393
//
363394
// Endstop Names used by Endstops::report_states
364395
//

0 commit comments

Comments
 (0)