You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am considering some extreme cases, adding degrees of freedom and multi-material solutions at the head of the printer.
I would like to know how many stepper motors the current Remora supports in theory. My solution requires nine stepper motors.
I read remora.h just now, it says Max 8 joints,
Is it because the communication message is 32 bits, like int32_t jointFreqCmd[JOINTS];
Where should I start if I want to modify the 9-axis version? LinuxCNC HAL compenent, FirmwareBin, anything else?
The text was updated successfully, but these errors were encountered:
//change
//#define JOINTS 8 // Number of joints - set this the same as LinuxCNC HAL compenent. Max 8 joints
#define JOINTS 9
//change
//#define VARIABLES 6 // Number of command values - set this the same as the LinuxCNC HAL compenent
#define VARIABLES 5
After modifying these items, the nine-axis movement can basically be realized.
It is worth mentioning that in order to ensure
#define SPIBUFSIZE 64 //(4+4JOINTS+4COMMANDS+1) //(MAX_MSG*4) //20 SPI buffer size ......FIFO buffer size is 64 bytes?
I modified the VARIABLES from 6 to 5, will this have any effect?
I am considering some extreme cases, adding degrees of freedom and multi-material solutions at the head of the printer.
I would like to know how many stepper motors the current Remora supports in theory. My solution requires nine stepper motors.
I read remora.h just now, it says Max 8 joints,
Is it because the communication message is 32 bits, like int32_t jointFreqCmd[JOINTS];
Where should I start if I want to modify the 9-axis version? LinuxCNC HAL compenent, FirmwareBin, anything else?
The text was updated successfully, but these errors were encountered: