-
I have problems configuring grblhal for 5 axis properly and correctly. by default, axes 4 and 5 are rotation axis A and rotation axis B. However, I want axes 4 and 5 to be A and C because in CAM and in simulation I use these axes. I can control axis A, but I cannot control axis C So far, I have succeeded in displaying the axis on the console correctly but cannot run the steppermotor with the jog command on the gcode sender. and simple gcode commands like G1C10F100 also won't start the motor I have made changes to config.h nut_bolts.c nuts_bolts.h and config.h. For details, you can see my repo at Below is a screenshot of my progress so far |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The core does not support arbitrary naming of axes, they have to be consecutive. You may get around it by modifying the core by substituting C for B where needed. Another option would be to use a 6 axis map and set the stepper pins for B (motor 4) to the same (unused) pin. |
Beta Was this translation helpful? Give feedback.
The core does not support arbitrary naming of axes, they have to be consecutive. You may get around it by modifying the core by substituting C for B where needed. Another option would be to use a 6 axis map and set the stepper pins for B (motor 4) to the same (unused) pin.