I got the MCSDK example working, but how can i go further?Can i write custom code that controls the motor without Motor Pilot?[STEVAL-SPIN3201 // maxon BLDC motor]
/* Infinite loop */
/* USER CODE BEGIN WHILE */
while (1) // the whole thing repeats
{
MC_ProgramSpeedRampMotor1(100, 100); // must set speed before start
MC_StartMotor1(); // start
while(MC_GetSTMStateMotor1() != RUN) {} // wait until i...