From ee708a904c4354f7847fdfa1b7e2c65f60038a3d Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 14 Jun 2022 10:28:29 -0700 Subject: [PATCH] core: consistent naming of the new Aqualung i200C models It's confusing to have the same name refer to two different models. Unfortunately, that's what Aqualung is doing by simply changing the model number and serial number, but not the external branding. Signed-off-by: Dirk Hohndel --- CHANGELOG.md | 1 + core/btdiscovery.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 481317a79..10a5031df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ - Garmin: correctly parse dive mode - Add support for the Seac Screen and Action - Add support for the Cressi Michelangelo + - Add partial support for the new version of the Aqualung i200C with GI.... version numbers, internally named i200Cv2 --- diff --git a/core/btdiscovery.cpp b/core/btdiscovery.cpp index 982ea2b53..587fe59ab 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -28,7 +28,7 @@ static struct modelPattern model[] = { { 0x4647, "Sherwood", "Sage" }, { 0x4648, "Aqualung", "i300C" }, { 0x4649, "Aqualung", "i200C" }, - { 0x4749, "Aqualung", "i200C" }, + { 0x4749, "Aqualung", "i200Cv2" }, { 0x4651, "Aqualung", "i770R" }, { 0x4652, "Aqualung", "i550C" }, { 0x4653, "Oceanic", "Geo 4.0" },