terjeio / GRBL_MPG_DRO_BoosterPack

Tiva C BoosterPack for GRBL MPG/DRO
43 stars 20 forks source link

Can this project be used to control the A axis of grbl. #12

Closed CHTUZKI closed 1 year ago

CHTUZKI commented 1 year ago

I want to control my A-axis with this project, I don't know if it is possible with this project. If not, is it feasible for me to treat the X-axis signal as the A-axis signal. In grbl, are the six axes (XYZABC) implemented with the same code?

terjeio commented 1 year ago

I want to control my A-axis with this project, I don't know if it is possible with this project.

With code changes, yes.

If not, is it feasible for me to treat the X-axis signal as the A-axis signal.

Same as above.

In grbl, are the six axes (XYZABC) implemented with the same code?

I am not sure what you mean by this. Additional axes (to XYZ) are implemented by extending data structures and replicating code for each. The replicated code is slightly changed to reference the new axis information. This project does the same, here are some examples.

CHTUZKI commented 1 year ago

Thank you for your answer