Part Number: LAUNCHXL-F280049C
Other Parts Discussed in Thread: BOOSTXL-DRV8320S, BOOSTXL-DRV8320RS, C2000WARE
Hi,
I am trying to run through the labs on InstapinFOC for the LAUNCHXL-F280049C in combination with the BOOSTXL-DRV8320S EVM. I have the DRV set up on J1 and J2, as defined in the user.h file. In each lab, the following trip fault gets set:
if(HAL_getPwmEnableStatus(halHandle) == true)
{
if(HAL_getTripFaults(halHandle) != 0)
{
motorVars.faultNow.bit.moduleOverCurrent = 1;
}
}
I tried commenting that out to get past it, but the motor still will not spin. I have been trying to make the motor spin using lab 5 and 7. The fault LED on the DRV board does not light up, so it does not seem like any real fault is present. In user.h I have tried defining the motor as either my_motor_1 or the predefined #define Estun_EMJ_04APB22_B.
Any help is greatly appreciated.