From 99b26b459efd54c5d3cfebea609e3f620f3c3fe9 Mon Sep 17 00:00:00 2001 From: Jason Young <46612682+jyoung8607@users.noreply.github.com> Date: Sun, 29 Dec 2024 14:04:29 -0600 Subject: [PATCH 1/9] VW MQB: Temporarily remove 2024 Volkswagen Tiguan (#1603) * VW MQB: Temporarily remove 2024 Tiguan * regen CARS.md --- docs/CARS.md | 2 +- opendbc/car/volkswagen/values.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/CARS.md b/docs/CARS.md index 0a1a187866..358f3b0de9 100644 --- a/docs/CARS.md +++ b/docs/CARS.md @@ -345,7 +345,7 @@ |Volkswagen|Teramont 2018-22|Adaptive Cruise Control (ACC) & Lane Assist|[Upstream](#upstream)| |Volkswagen|Teramont Cross Sport 2021-22|Adaptive Cruise Control (ACC) & Lane Assist|[Upstream](#upstream)| |Volkswagen|Teramont X 2021-22|Adaptive Cruise Control (ACC) & Lane Assist|[Upstream](#upstream)| -|Volkswagen|Tiguan 2018-24|Adaptive Cruise Control (ACC) & Lane Assist|[Upstream](#upstream)| +|Volkswagen|Tiguan 2018-23|Adaptive Cruise Control (ACC) & Lane Assist|[Upstream](#upstream)| |Volkswagen|Tiguan eHybrid 2021-23|Adaptive Cruise Control (ACC) & Lane Assist|[Upstream](#upstream)| |Volkswagen|Touran 2016-23|Adaptive Cruise Control (ACC) & Lane Assist|[Upstream](#upstream)| diff --git a/opendbc/car/volkswagen/values.py b/opendbc/car/volkswagen/values.py index f1f617dc82..3eaf41d54e 100644 --- a/opendbc/car/volkswagen/values.py +++ b/opendbc/car/volkswagen/values.py @@ -332,7 +332,7 @@ class CAR(Platforms): ) VOLKSWAGEN_TIGUAN_MK2 = VolkswagenMQBPlatformConfig( [ - VWCarDocs("Volkswagen Tiguan 2018-24"), + VWCarDocs("Volkswagen Tiguan 2018-23"), VWCarDocs("Volkswagen Tiguan eHybrid 2021-23"), ], VolkswagenCarSpecs(mass=1715, wheelbase=2.74), From 983bf9c0498b57b3ceaccd0c3e5872c2e1c97708 Mon Sep 17 00:00:00 2001 From: Jason Young <46612682+jyoung8607@users.noreply.github.com> Date: Sun, 29 Dec 2024 14:24:55 -0600 Subject: [PATCH 2/9] Toyota: Cleanup SecOC key mismatch logging (#1604) cleanup unnecessary logging code --- opendbc/car/toyota/carcontroller.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/opendbc/car/toyota/carcontroller.py b/opendbc/car/toyota/carcontroller.py index 4dc42a1074..023ca3c073 100644 --- a/opendbc/car/toyota/carcontroller.py +++ b/opendbc/car/toyota/carcontroller.py @@ -86,7 +86,6 @@ def __init__(self, dbc_names, CP): self.secoc_lka_message_counter = 0 self.secoc_lta_message_counter = 0 self.secoc_prev_reset_counter = 0 - self.secoc_mismatch_counter = 0 def update(self, CC, CS, now_nanos): actuators = CC.actuators @@ -109,9 +108,8 @@ def update(self, CC, CS, now_nanos): self.secoc_prev_reset_counter = CS.secoc_synchronization['RESET_CNT'] expected_mac = build_sync_mac(self.secoc_key, int(CS.secoc_synchronization['TRIP_CNT']), int(CS.secoc_synchronization['RESET_CNT'])) - if int(CS.secoc_synchronization['AUTHENTICATOR']) != expected_mac and self.secoc_mismatch_counter < 100: + if int(CS.secoc_synchronization['AUTHENTICATOR']) != expected_mac: carlog.error("SecOC synchronization MAC mismatch, wrong key?") - self.secoc_mismatch_counter += 1 # *** steer torque *** new_steer = int(round(actuators.steer * self.params.STEER_MAX)) From 309f5a4fec895deecc9cb05f5015dba8cc079815 Mon Sep 17 00:00:00 2001 From: ugtthis <142481257+ugtthis@users.noreply.github.com> Date: Mon, 30 Dec 2024 11:37:07 -0800 Subject: [PATCH 3/9] docs: remove unused code (#1606) rm code --- opendbc/car/docs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opendbc/car/docs.py b/opendbc/car/docs.py index 00428f5c81..5287fa1c2a 100755 --- a/opendbc/car/docs.py +++ b/opendbc/car/docs.py @@ -41,7 +41,7 @@ def get_all_footnotes() -> dict[Enum, int]: return {fn: idx + 1 for idx, fn in enumerate(all_footnotes)} -def build_sorted_car_docs_list(platforms, footnotes=None, include_dashcam=False, include_custom=False): +def build_sorted_car_docs_list(platforms, footnotes=None, include_dashcam=False): collected_car_docs: list[CarDocs | ExtraCarDocs] = [] for model, platform in platforms.items(): car_docs = platform.config.car_docs @@ -70,7 +70,7 @@ def get_all_car_docs() -> list[CarDocs]: def get_car_docs_with_extras() -> list[CarDocs | ExtraCarDocs]: - sorted_list: list[CarDocs] = build_sorted_car_docs_list(EXTRA_PLATFORMS, include_custom=True, include_dashcam=True) + sorted_list: list[CarDocs] = build_sorted_car_docs_list(EXTRA_PLATFORMS, include_dashcam=True) return sorted_list From 89ef168360a6dec18a6ee187b763fb3e1cb96f01 Mon Sep 17 00:00:00 2001 From: Jason Wen Date: Thu, 2 Jan 2025 15:00:19 -0500 Subject: [PATCH 4/9] Hyundai: Fix docs for Ioniq 5 Southeast Asia and Europe (#1597) * Hyundai: Fix docs for Ioniq 5 Southeast Asia and Europe * add indian fwdcamera --- docs/CARS.md | 2 +- opendbc/car/hyundai/fingerprints.py | 1 + opendbc/car/hyundai/values.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/CARS.md b/docs/CARS.md index 358f3b0de9..291ce336b3 100644 --- a/docs/CARS.md +++ b/docs/CARS.md @@ -103,7 +103,7 @@ |Hyundai|Elantra Hybrid 2021-23|Smart Cruise Control (SCC)|[Upstream](#upstream)| |Hyundai|Genesis 2015-16|Smart Cruise Control (SCC)|[Upstream](#upstream)| |Hyundai|i30 2017-19|Smart Cruise Control (SCC)|[Upstream](#upstream)| -|Hyundai|Ioniq 5 (Non-US only) 2022-24|All|[Upstream](#upstream)| +|Hyundai|Ioniq 5 (Southeast Asia and Europe only) 2022-24|All|[Upstream](#upstream)| |Hyundai|Ioniq 5 (with HDA II) 2022-24|Highway Driving Assist II|[Upstream](#upstream)| |Hyundai|Ioniq 5 (without HDA II) 2022-24|Highway Driving Assist|[Upstream](#upstream)| |Hyundai|Ioniq 6 (with HDA II) 2023-24|Highway Driving Assist II|[Upstream](#upstream)| diff --git a/opendbc/car/hyundai/fingerprints.py b/opendbc/car/hyundai/fingerprints.py index 4b47f3cc02..95e24777bf 100644 --- a/opendbc/car/hyundai/fingerprints.py +++ b/opendbc/car/hyundai/fingerprints.py @@ -1003,6 +1003,7 @@ b'\xf1\x00NE1 MFC AT USA LHD 1.00 1.03 99211-GI010 220401', b'\xf1\x00NE1 MFC AT USA LHD 1.00 1.05 99211-GI010 220614', b'\xf1\x00NE1 MFC AT USA LHD 1.00 1.06 99211-GI010 230110', + b'\xf1\x00NE1 MFC AT IND RHD 1.00 1.07 99211-GI010 230620', ], }, CAR.HYUNDAI_IONIQ_6: { diff --git a/opendbc/car/hyundai/values.py b/opendbc/car/hyundai/values.py index 223eb97a3d..07f427502a 100644 --- a/opendbc/car/hyundai/values.py +++ b/opendbc/car/hyundai/values.py @@ -309,7 +309,7 @@ class CAR(Platforms): ) HYUNDAI_IONIQ_5 = HyundaiCanFDPlatformConfig( [ - HyundaiCarDocs("Hyundai Ioniq 5 (Non-US only) 2022-24", "All", car_parts=CarParts.common([CarHarness.hyundai_q])), + HyundaiCarDocs("Hyundai Ioniq 5 (Southeast Asia and Europe only) 2022-24", "All", car_parts=CarParts.common([CarHarness.hyundai_q])), HyundaiCarDocs("Hyundai Ioniq 5 (without HDA II) 2022-24", "Highway Driving Assist", car_parts=CarParts.common([CarHarness.hyundai_k])), HyundaiCarDocs("Hyundai Ioniq 5 (with HDA II) 2022-24", "Highway Driving Assist II", car_parts=CarParts.common([CarHarness.hyundai_q])), ], From dcfdcb90e4e7620f4acbd26573ecc46161ec044b Mon Sep 17 00:00:00 2001 From: Jason Wen Date: Thu, 2 Jan 2025 15:00:40 -0500 Subject: [PATCH 5/9] HKG: Add FW versions for Genesis GV70 Electrified 2022 (Australia Only) (#1596) * HKG: Add FW versions for Genesis GV70 Electrified 2022 (Australia Only) * all --- docs/CARS.md | 3 ++- opendbc/car/hyundai/fingerprints.py | 1 + opendbc/car/hyundai/values.py | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/CARS.md b/docs/CARS.md index 291ce336b3..69b4a22180 100644 --- a/docs/CARS.md +++ b/docs/CARS.md @@ -1,6 +1,6 @@ -# Support Information for 344 Known Cars +# Support Information for 345 Known Cars |Make|Model|Package|Support Level| |---|---|---|:---:| @@ -61,6 +61,7 @@ |Genesis|GV60 (Performance Trim) 2022-23|All|[Upstream](#upstream)| |Genesis|GV70 (2.5T Trim, without HDA II) 2022-23|All|[Upstream](#upstream)| |Genesis|GV70 (3.5T Trim, without HDA II) 2022-23|All|[Upstream](#upstream)| +|Genesis|GV70 Electrified (Australia Only) 2022|All|[Upstream](#upstream)| |Genesis|GV70 Electrified (with HDA II) 2023|Highway Driving Assist II|[Upstream](#upstream)| |Genesis|GV80 2023|All|[Upstream](#upstream)| |GMC|Sierra 1500 2020-21|Driver Alert Package II|[Upstream](#upstream)| diff --git a/opendbc/car/hyundai/fingerprints.py b/opendbc/car/hyundai/fingerprints.py index 95e24777bf..b1ea35a3a1 100644 --- a/opendbc/car/hyundai/fingerprints.py +++ b/opendbc/car/hyundai/fingerprints.py @@ -1084,6 +1084,7 @@ CAR.GENESIS_GV70_ELECTRIFIED_1ST_GEN: { (Ecu.fwdCamera, 0x7c4, None): [ b'\xf1\x00JK1EMFC AT USA LHD 1.00 1.00 99211-IT100 220919', + b'\xf1\x00JK1EMFC AT AUS RHD 1.00 1.01 99211-DS100 220125', ], (Ecu.fwdRadar, 0x7d0, None): [ b'\xf1\x00JKev SCC ----- 1.00 1.01 99110-DS000 ', diff --git a/opendbc/car/hyundai/values.py b/opendbc/car/hyundai/values.py index 07f427502a..c4eb636c5c 100644 --- a/opendbc/car/hyundai/values.py +++ b/opendbc/car/hyundai/values.py @@ -532,6 +532,7 @@ class CAR(Platforms): ) GENESIS_GV70_ELECTRIFIED_1ST_GEN = HyundaiCanFDPlatformConfig( [ + HyundaiCarDocs("Genesis GV70 Electrified (Australia Only) 2022", "All", car_parts=CarParts.common([CarHarness.hyundai_q])), HyundaiCarDocs("Genesis GV70 Electrified (with HDA II) 2023", "Highway Driving Assist II", car_parts=CarParts.common([CarHarness.hyundai_q])), ], CarSpecs(mass=2260, wheelbase=2.87, steerRatio=17.1), From d4b0c3a52bec878ec39849e0de53274b458e82e1 Mon Sep 17 00:00:00 2001 From: BroodPitt Date: Thu, 2 Jan 2025 21:09:42 +0100 Subject: [PATCH 6/9] Update fingerprints.py for Hyundai Ioniq 2017 EU (#1587) Update fingerprints.py for Hyundai Ioniq 2007 EU --- opendbc/car/hyundai/fingerprints.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/opendbc/car/hyundai/fingerprints.py b/opendbc/car/hyundai/fingerprints.py index b1ea35a3a1..3d12f0f499 100644 --- a/opendbc/car/hyundai/fingerprints.py +++ b/opendbc/car/hyundai/fingerprints.py @@ -49,11 +49,13 @@ b'\xf1\x00AEhe SCC H-CUP 1.01 1.01 96400-G2100 ', ], (Ecu.eps, 0x7d4, None): [ + b'\xf1\x00AE MDPS C 1.00 1.03 56310/G2300 4AEHC103', b'\xf1\x00AE MDPS C 1.00 1.05 56310/G2501 4AEHC105', b'\xf1\x00AE MDPS C 1.00 1.07 56310/G2301 4AEHC107', b'\xf1\x00AE MDPS C 1.00 1.07 56310/G2501 4AEHC107', ], (Ecu.fwdCamera, 0x7c4, None): [ + b'\xf1\x00AEH MFC AT EUR LHD 1.00 1.00 95740-G7200 160418', b'\xf1\x00AEH MFC AT EUR LHD 1.00 1.00 95740-G2400 180222', b'\xf1\x00AEH MFC AT USA LHD 1.00 1.00 95740-G2400 180222', ], From 55e3c0af4a1d09b872a221b8e78777347c71d7a1 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Thu, 2 Jan 2025 13:01:37 -0800 Subject: [PATCH 7/9] [bot] Fingerprints: add missing FW versions from new users (#1608) Export fingerprints --- opendbc/car/chrysler/fingerprints.py | 3 +++ opendbc/car/honda/fingerprints.py | 1 + opendbc/car/hyundai/fingerprints.py | 6 ++++-- opendbc/car/mazda/fingerprints.py | 1 + opendbc/car/toyota/fingerprints.py | 1 + 5 files changed, 10 insertions(+), 2 deletions(-) diff --git a/opendbc/car/chrysler/fingerprints.py b/opendbc/car/chrysler/fingerprints.py index d36a8e903b..543378aa83 100644 --- a/opendbc/car/chrysler/fingerprints.py +++ b/opendbc/car/chrysler/fingerprints.py @@ -97,6 +97,7 @@ b'04672758AB', b'68417813AF', b'68540436AA', + b'68540436AB', b'68540436AC', b'68540436AD', b'68598670AB', @@ -573,6 +574,7 @@ b'68378743AM ', b'68378748AL ', b'68378758AM ', + b'68378759AM ', b'68448163AJ', b'68448163AK', b'68448163AL', @@ -625,6 +627,7 @@ b'68360080AL', b'68360080AM', b'68360081AM', + b'68360081AN', b'68360085AH', b'68360085AJ', b'68360085AL', diff --git a/opendbc/car/honda/fingerprints.py b/opendbc/car/honda/fingerprints.py index c95efce0c5..51c3646333 100644 --- a/opendbc/car/honda/fingerprints.py +++ b/opendbc/car/honda/fingerprints.py @@ -876,6 +876,7 @@ b'77959-T20-A970\x00\x00', b'77959-T20-A980\x00\x00', b'77959-T20-M820\x00\x00', + b'77959-T39-A910\x00\x00', b'77959-T47-A940\x00\x00', b'77959-T47-A950\x00\x00', ], diff --git a/opendbc/car/hyundai/fingerprints.py b/opendbc/car/hyundai/fingerprints.py index 3d12f0f499..ffd972e35d 100644 --- a/opendbc/car/hyundai/fingerprints.py +++ b/opendbc/car/hyundai/fingerprints.py @@ -143,6 +143,7 @@ b'\xf1\x00AEhe SCC FHCUP 1.00 1.00 99110-G2600 ', ], (Ecu.eps, 0x7d4, None): [ + b'\xf1\x00AE MDPS C 1.00 1.01 56310/G2510 4APHC101', b'\xf1\x00AE MDPS C 1.00 1.01 56310G2510\x00 4APHC101', ], (Ecu.fwdCamera, 0x7c4, None): [ @@ -395,6 +396,7 @@ b'\xf1\x00LX2_ SCC FHCUP 1.00 1.03 99110-S8100 ', b'\xf1\x00LX2_ SCC FHCUP 1.00 1.04 99110-S8100 ', b'\xf1\x00LX2_ SCC FHCUP 1.00 1.05 99110-S8100 ', + b'\xf1\x00ON__ FCA FHCU- 1.00 1.00 99110-S9110 ', b'\xf1\x00ON__ FCA FHCUP 1.00 1.00 99110-S9110 ', b'\xf1\x00ON__ FCA FHCUP 1.00 1.01 99110-S9110 ', b'\xf1\x00ON__ FCA FHCUP 1.00 1.02 99110-S9100 ', @@ -995,6 +997,7 @@ b'\xf1\x00NE1 MFC AT EUR LHD 1.00 1.06 99211-GI010 230110', b'\xf1\x00NE1 MFC AT EUR RHD 1.00 1.01 99211-GI010 211007', b'\xf1\x00NE1 MFC AT EUR RHD 1.00 1.02 99211-GI010 211206', + b'\xf1\x00NE1 MFC AT IND RHD 1.00 1.07 99211-GI010 230620', b'\xf1\x00NE1 MFC AT KOR LHD 1.00 1.00 99211-GI020 230719', b'\xf1\x00NE1 MFC AT KOR LHD 1.00 1.01 99211-GI010 211007', b'\xf1\x00NE1 MFC AT KOR LHD 1.00 1.05 99211-GI010 220614', @@ -1005,7 +1008,6 @@ b'\xf1\x00NE1 MFC AT USA LHD 1.00 1.03 99211-GI010 220401', b'\xf1\x00NE1 MFC AT USA LHD 1.00 1.05 99211-GI010 220614', b'\xf1\x00NE1 MFC AT USA LHD 1.00 1.06 99211-GI010 230110', - b'\xf1\x00NE1 MFC AT IND RHD 1.00 1.07 99211-GI010 230620', ], }, CAR.HYUNDAI_IONIQ_6: { @@ -1085,8 +1087,8 @@ }, CAR.GENESIS_GV70_ELECTRIFIED_1ST_GEN: { (Ecu.fwdCamera, 0x7c4, None): [ - b'\xf1\x00JK1EMFC AT USA LHD 1.00 1.00 99211-IT100 220919', b'\xf1\x00JK1EMFC AT AUS RHD 1.00 1.01 99211-DS100 220125', + b'\xf1\x00JK1EMFC AT USA LHD 1.00 1.00 99211-IT100 220919', ], (Ecu.fwdRadar, 0x7d0, None): [ b'\xf1\x00JKev SCC ----- 1.00 1.01 99110-DS000 ', diff --git a/opendbc/car/mazda/fingerprints.py b/opendbc/car/mazda/fingerprints.py index d7c430bc78..e21fa4449b 100644 --- a/opendbc/car/mazda/fingerprints.py +++ b/opendbc/car/mazda/fingerprints.py @@ -11,6 +11,7 @@ (Ecu.engine, 0x7e0, None): [ b'PEW5-188K2-A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', b'PW67-188K2-C\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', + b'PX2C-188K2-G\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', b'PX2D-188K2-G\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', b'PX2G-188K2-H\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', b'PX2H-188K2-H\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', diff --git a/opendbc/car/toyota/fingerprints.py b/opendbc/car/toyota/fingerprints.py index e8359d4c01..270d807edc 100644 --- a/opendbc/car/toyota/fingerprints.py +++ b/opendbc/car/toyota/fingerprints.py @@ -1381,6 +1381,7 @@ b'\x02333R0000\x00\x00\x00\x00\x00\x00\x00\x00A0C01000\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.abs, 0x7b0, None): [ + b'F152606201\x00\x00\x00\x00\x00\x00', b'F152606202\x00\x00\x00\x00\x00\x00', b'F152633171\x00\x00\x00\x00\x00\x00', ], From 43025ae46126f79923851c6adf22c538cc230907 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Thu, 2 Jan 2025 14:19:15 -0800 Subject: [PATCH 8/9] [bot] Car docs: update model years from new users (#1609) Update car docs --- opendbc/car/honda/values.py | 2 +- opendbc/car/hyundai/fingerprints.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opendbc/car/honda/values.py b/opendbc/car/honda/values.py index bce1b73a60..659ba69819 100644 --- a/opendbc/car/honda/values.py +++ b/opendbc/car/honda/values.py @@ -256,7 +256,7 @@ class CAR(Platforms): flags=HondaFlags.NIDEC_ALT_SCM_MESSAGES, ) HONDA_RIDGELINE = HondaNidecPlatformConfig( - [HondaCarDocs("Honda Ridgeline 2017-24", min_steer_speed=12. * CV.MPH_TO_MS)], + [HondaCarDocs("Honda Ridgeline 2017-25", min_steer_speed=12. * CV.MPH_TO_MS)], CarSpecs(mass=4515 * CV.LB_TO_KG, wheelbase=3.18, centerToFrontRatio=0.41, steerRatio=15.59, tireStiffnessFactor=0.444), # as spec radar_dbc_dict('acura_ilx_2016_can_generated'), flags=HondaFlags.NIDEC_ALT_SCM_MESSAGES, diff --git a/opendbc/car/hyundai/fingerprints.py b/opendbc/car/hyundai/fingerprints.py index ffd972e35d..1c40cef802 100644 --- a/opendbc/car/hyundai/fingerprints.py +++ b/opendbc/car/hyundai/fingerprints.py @@ -55,8 +55,8 @@ b'\xf1\x00AE MDPS C 1.00 1.07 56310/G2501 4AEHC107', ], (Ecu.fwdCamera, 0x7c4, None): [ - b'\xf1\x00AEH MFC AT EUR LHD 1.00 1.00 95740-G7200 160418', b'\xf1\x00AEH MFC AT EUR LHD 1.00 1.00 95740-G2400 180222', + b'\xf1\x00AEH MFC AT EUR LHD 1.00 1.00 95740-G7200 160418', b'\xf1\x00AEH MFC AT USA LHD 1.00 1.00 95740-G2400 180222', ], }, From c1a8eaec70f459b6f5be9b6d3433ba148b96cfa4 Mon Sep 17 00:00:00 2001 From: adeebshihadeh Date: Fri, 3 Jan 2025 08:07:43 +0000 Subject: [PATCH 9/9] docs: Scheduled auto-update CARS.md --- docs/CARS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CARS.md b/docs/CARS.md index 69b4a22180..7128d7404b 100644 --- a/docs/CARS.md +++ b/docs/CARS.md @@ -92,7 +92,7 @@ |Honda|Passport 2019-23|All|[Upstream](#upstream)| |Honda|Pilot 2016-22|Honda Sensing|[Upstream](#upstream)| |Honda|Pilot 2023-24|All|[Community](#community)| -|Honda|Ridgeline 2017-24|Honda Sensing|[Upstream](#upstream)| +|Honda|Ridgeline 2017-25|Honda Sensing|[Upstream](#upstream)| |Hyundai|Azera 2022|All|[Upstream](#upstream)| |Hyundai|Azera Hybrid 2019|All|[Upstream](#upstream)| |Hyundai|Azera Hybrid 2020|All|[Upstream](#upstream)|