with AcChargeControl set to CANremoteControlled. Behaviour is the same.
with it set to StandAlone. Foccci enabled the EVSE and after that Zombie enabled the HV.
and with a button press the HV off and EVSE off. We are getting somewhere

So its broken for Zombie.
Be good to know if you can atleast get build 80 working to have a starting point to investigate further.
This was added (along with now a bunch of other changes) after my work on the Zombie integration and writing the AC charging logic and testing it all with BigPie.
Code: Select all
UnlockAllow = UnlockAllow << 7;
if(ChargeAllow == true)
{
bytes[0] = 0x01; //allow starting
AcOBCReq = 0x08; //Charge AC
}
else
{
bytes[0] = 0x00; //stop charge
AcOBCReq = 0x08;
}
bytes[0] = bytes[0] | AcOBCReq | UnlockAllow; //
Nope, as standalone works, which still uses same AC Charge logic, thus requires LockState to work
No, spot value changes as expected, but the physical motor does not move.
The pictures look like one cable of the motor is not connected or not driven. So on both ends of the motor we see the same voltage. If the cable between the motor and Foccci is not the root cause, we need to check what the driver does. It it possible to hook the scope to pin 1 and pin 2 of the driver IC (IC1, DRV8874)? Normally, to drive the motor, one of the pins should be high and the other low. I see no obvious reason in the software, that this control does not work.
A yes this makes sense.
Yes will do some tests.
Will do