Dear Sir.,
We are using TM4C1294NCPDT microcontroller,we designed 4 stepper motor in our Hardware unit.Its separated from LHS(left hand side) and RHS(Right Hand side).Using DRV8711 Stepper driver IC for each stepper motors.
1st Stepper motor has high current and high speed.
2nd stepper motor has low torque and minimum speed.
The above motor has same process in RHS side too.
Previously we are operating only LHS or RHS.Now we planned to operate both LHS and RHS (4 stepper motor) at the same time.All stepper motor has configured as 1ms timer interrupt.Now we are facing interrupt latency(That means the both LHS and RHS sequence was not same,having some delay.)
LHS Side:
1st stepper motor:
Control_Register.MODE = 0x02;
Torque_Register.TORQUE = 0xF0;
Decay_Register.TDECAY = 0x10;
Stall_Register.SDTHR = 0x1A;
Stepper motor 2:
Control_Register.MODE = 0x02;
Torque_Register.TORQUE = 0x64;
Decay_Register.TDECAY = 0x10;
Stall_Register.SDTHR = 0x40;
This above configuration same as RHS side.
If i operate both LHS & RHS means what kind of issue will come,otherwise what is the alternate option for this problem.
Thanks in advance