-
Hello everyone, I am having problems creating the axis configuration XZBC for a lathe. (Mega-5X Version = 1.2.h) Hints for solving the problem are welcome :) Thanks I use following config.h #define N_AXIS 4 // Number of axes (3 to 6) // Axis indexing and names // Renaming axis doesn't change their number. By default, the status report give axis values in |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @GrblGru, In the config.h extract that you put, I still see the definition Finaly, for your need, you must have:
@++; |
Beta Was this translation helpful? Give feedback.
Hi @GrblGru,
In the config.h extract that you put, I still see the definition
#define AXIS_3_NAME 'Y'
.Then, with
#define N_AXIS 4
, the elements:#define AXIS_5 4
and#define AXIS_5_NAME 'C'
are not taken into account.Finaly, for your need, you must have:
@++;
Gauthier.