Cruise Control din_forward
Posted: Tue Jul 09, 2024 7:34 pm
So, I have Tesla LDU and when going forward I need to put the motor to "reverse" in firmware point of view to go forward. When trying to use cruise control, it won't engage as in code there is this
So it always sets cruiseSpeed to -1 when going forward with Tesla motor (as it's on din_reverse when going forward).
I'm on firmware v5.32.R
How to fix this? How to enable cruise on Tesla motors?
Code: Select all
if (Param::GetBool(Param::din_brake) || !Param::GetBool(Param::din_forward))
{
Throttle::cruiseSpeed = -1;
}
I'm on firmware v5.32.R
How to fix this? How to enable cruise on Tesla motors?