mirror of https://github.com/commaai/panda.git
Hyundai: increase max torque (#602)
* increase max hyundai torque * update test threshold
This commit is contained in:
parent
09997428f3
commit
9fb584b20c
|
@ -1,4 +1,4 @@
|
|||
const int HYUNDAI_MAX_STEER = 255; // like stock
|
||||
const int HYUNDAI_MAX_STEER = 384; // like stock
|
||||
const int HYUNDAI_MAX_RT_DELTA = 112; // max delta torque allowed for real time checks
|
||||
const uint32_t HYUNDAI_RT_INTERVAL = 250000; // 250ms between real time checks
|
||||
const int HYUNDAI_MAX_RATE_UP = 3;
|
||||
|
|
|
@ -8,7 +8,7 @@ from panda.tests.safety.common import CANPackerPanda
|
|||
|
||||
MAX_RATE_UP = 3
|
||||
MAX_RATE_DOWN = 7
|
||||
MAX_STEER = 255
|
||||
MAX_STEER = 384
|
||||
|
||||
MAX_RT_DELTA = 112
|
||||
RT_INTERVAL = 250000
|
||||
|
|
Loading…
Reference in New Issue