Increase interactive timeout when onroad to 30 seconds

This commit is contained in:
FrogAi
2024-02-27 16:34:47 -07:00
parent 64c8ee4f32
commit 9161f8b10e
+1 -1
View File
@@ -434,7 +434,7 @@ void Device::setAwake(bool on) {
void Device::resetInteractiveTimeout(int timeout) {
if (timeout == -1) {
timeout = (ignition_on ? 10 : 30);
timeout = 30;
}
interactive_timeout = timeout * UI_FREQ;
}