f9fcc7adab
date: 2026-06-28T09:48:35 master commit: da6313dbe95b3f24bb5d8018b0e5f950f5823ca7
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
|
|
}
|