From 3a91ae08a9ebc4d051a7c226e6c869c1a81c0d37 Mon Sep 17 00:00:00 2001 From: Jason Wen Date: Sat, 6 Sep 2025 18:03:16 -0400 Subject: [PATCH] update: actually detect device type as TICI (#1221) --- system/hardware/hardwared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/hardware/hardwared.py b/system/hardware/hardwared.py index af01154144..df8ae23ab5 100755 --- a/system/hardware/hardwared.py +++ b/system/hardware/hardwared.py @@ -331,7 +331,7 @@ def hardware_thread(end_event, hw_queue) -> None: # - TIZI, or # - TICI and channel_type is "tici" build_metadata = get_build_metadata() - is_unsupported_combo = TICI and build_metadata.channel_type != "tici" + is_unsupported_combo = TICI and HARDWARE.get_device_type() == "tici" and build_metadata.channel_type != "tici" startup_conditions["not_tici"] = not is_unsupported_combo onroad_conditions["not_tici"] = not is_unsupported_combo set_offroad_alert("Offroad_TiciSupport", is_unsupported_combo, extra_text=build_metadata.channel)