Is it possible to change the rotation direction of the motor in sensorless mode in some way?
Hello everyone,
I would like to use my setup (using an stm32g431cb) to rotate 3 circle and than rotate 3 circle in the other direction, with 1500 rpm.
Now my motor just doing the rotation in one direction continously. I tried to use the following functions for :
MC_ProgramSpeedRampMotor1(3000,2000);
MC_StartMotor1();
HAL_Delay(2000);
MC_StopMotor1();
MC_ProgramSpeedRampMotor1(-3000,2000);
MC_StartMotor1();
HAL_Delay(2000);
MC_StopMotor1();
but I don't exactly know how to use them...
Thanl you!
