From 960f6fd2ec5426c89a36b35ad5d99d45a71a0b5b Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Tue, 10 Sep 2024 11:10:12 +1200 Subject: [PATCH] Remove Devices not Supported by Subsurface. Remove the latest generation of devices made by Pelagian Pressure Systems, as their intentionally broken pairing mechanism is not supported by Subsurface. Note: This list of devices is only used by the mobile version. Signed-off-by: Michael Keller --- src/descriptor.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/descriptor.c b/src/descriptor.c index 4c465b77..8d31e01c 100644 --- a/src/descriptor.c +++ b/src/descriptor.c @@ -276,8 +276,11 @@ static const dc_descriptor_t g_descriptors[] = { {"Aqualung", "i200Cv2", DC_FAMILY_OCEANIC_ATOM2, 0x4749, DC_TRANSPORT_SERIAL | DC_TRANSPORT_BLE, dc_filter_oceanic}, {"Oceanic", "Geo Air", DC_FAMILY_OCEANIC_ATOM2, 0x474B, DC_TRANSPORT_SERIAL | DC_TRANSPORT_BLE, dc_filter_oceanic}, /* Pelagic I330R */ - {"Apeks", "DSX", DC_FAMILY_PELAGIC_I330R, 0x4741, DC_TRANSPORT_BLE, dc_filter_oceanic}, - {"Aqualung", "i330R", DC_FAMILY_PELAGIC_I330R, 0x4744, DC_TRANSPORT_BLE, dc_filter_oceanic}, + // The pairing sequence for these was intentionally broken by Pelagic Pressure Systems + // so they won't work without a custom pairing dialogue provided by the app + // Pelagic should fix this on their side if they want their customers to be able to use Subsurface + //{"Apeks", "DSX", DC_FAMILY_PELAGIC_I330R, 0x4741, DC_TRANSPORT_BLE, dc_filter_oceanic}, + //{"Aqualung", "i330R", DC_FAMILY_PELAGIC_I330R, 0x4744, DC_TRANSPORT_BLE, dc_filter_oceanic}, /* Mares Nemo */ {"Mares", "Nemo", DC_FAMILY_MARES_NEMO, 0, DC_TRANSPORT_SERIAL, NULL}, {"Mares", "Nemo Steel", DC_FAMILY_MARES_NEMO, 0, DC_TRANSPORT_SERIAL, NULL},