File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 359
359
#define STR_Z3 STR_C "3"
360
360
#define STR_Z4 STR_C "4"
361
361
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
+
362
393
//
363
394
// Endstop Names used by Endstops::report_states
364
395
//
You can’t perform that action at this time.
0 commit comments