Skip to content

Commit 6277139

Browse files
committed
GM Volt: allowing 300 max steer
1 parent 63b7926 commit 6277139

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

board/safety/safety_gm.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// brake rising edge
99
// brake > 0mph
1010

11-
const int GM_MAX_STEER = 255;
11+
const int GM_MAX_STEER = 300;
1212
const int GM_MAX_RT_DELTA = 128; // max delta torque allowed for real time checks
1313
const int32_t GM_RT_INTERVAL = 250000; // 250ms between real time checks
1414
const int GM_MAX_RATE_UP = 7;

tests/safety/test_gm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
MAX_RATE_UP = 7
77
MAX_RATE_DOWN = 17
8-
MAX_STEER = 255
8+
MAX_STEER = 300
99
MAX_BRAKE = 350
1010
MAX_GAS = 3072
1111
MAX_REGEN = 1404

0 commit comments

Comments
 (0)