From b781fcf73d436b9b1037fc2cc1bbb0e790ee560f Mon Sep 17 00:00:00 2001 From: Jef Driesen Date: Mon, 26 Jan 2015 10:50:06 +0100 Subject: [PATCH] Add support for the HW OSTC cR. The OSTC cR is new model for closed circuit (CCR) diving. Under the hood it's identical to the OSTC 3, but with an S8 connector to interface with an external oxygen sensor. Since the data format already supports oxygen sensors, the OSTC cR can be added to the list of supported devices without any further changes. --- src/descriptor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/descriptor.c b/src/descriptor.c index 3ec02eb..d6d75d4 100644 --- a/src/descriptor.c +++ b/src/descriptor.c @@ -209,6 +209,7 @@ static const dc_descriptor_t g_descriptors[] = { {"Heinrichs Weikamp", "OSTC 2C", DC_FAMILY_HW_OSTC, 3}, {"Heinrichs Weikamp", "Frog", DC_FAMILY_HW_FROG, 0}, {"Heinrichs Weikamp", "OSTC 3", DC_FAMILY_HW_OSTC3, 0}, + {"Heinrichs Weikamp", "OSTC cR", DC_FAMILY_HW_OSTC3, 0}, {"Heinrichs Weikamp", "OSTC Sport", DC_FAMILY_HW_OSTC3, 1}, /* Cressi Edy */ {"Cressi", "Edy", DC_FAMILY_CRESSI_EDY, 0},