54e6124925
version: sunnypilot v2026.001.000 (dev) date: 2026-05-07T23:07:19 master commit: c28eb958740187620f2282023b8f1997cf90f583
20 lines
695 B
Python
20 lines
695 B
Python
"""
|
|
Copyright (c) 2021-, Haibin Wen, sunnypilot, and a number of other contributors.
|
|
|
|
This file is part of sunnypilot and is licensed under the MIT License.
|
|
See the LICENSE.md file in the root directory for more details.
|
|
"""
|
|
LIMIT_ADAPT_ACC = -1. # m/s^2 Ideal acceleration for the adapting (braking) phase when approaching speed limits.
|
|
LIMIT_MAX_MAP_DATA_AGE = 10. # s Maximum time to hold to map data, then consider it invalid inside limits controllers.
|
|
|
|
# Speed Limit Assist constants
|
|
PCM_LONG_REQUIRED_MAX_SET_SPEED = {
|
|
True: (33.3333, 36.1111), # km/h, (120, 130)
|
|
False: (31.2928, 35.7632), # mph, (70, 80)
|
|
}
|
|
|
|
CONFIRM_SPEED_THRESHOLD = {
|
|
True: 80, # km/h
|
|
False: 50, # mph
|
|
}
|