Files
2026-06-11 20:00:23 +08:00

16 lines
451 B
Python

from dragonpilot.settings import tr
ITEMS = [
{
"section": "Longitudinal",
"key": "dp_lon_acm",
"type": "toggle_item",
"title": lambda: tr("Enable Adaptive Coasting Mode (ACM)"),
"description": lambda: tr("Adaptive Coasting Mode (ACM) reduces braking to allow smoother coasting when appropriate."),
"condition": "openpilotLongitudinalControl",
"flags": "PERSISTENT",
"param_type": "BOOL",
"default": "0",
},
]