I was wondering if it is possible to spin the motor without mechanical feedback (resolver/encoder/hall).
I want to switch in the MainISR between.
between
ST_runPosConv(stHandle, encHandle, ctrlHandle);
ST_runPosMove(stHandle);
ST_runPosCtl(stHandle, ctrlHandle);
and
ST_runVelCtl(stHandle, ctrlHandle);
Only for that I need to include:
#include "spintac_velocity.h"
and
#include "spintac_position.h"
And that is a problem.
Or is this an option:
speedFeedback = EST_getFm_pu(ctrlObj->estHandle);
convert speedfeedback to an angle and place it in
enc->enc_magnetic_angle
Thanks!
edit: removed incorrect information