From 3803e3c52d2f518b972e29749588f6bb0e2a7515 Mon Sep 17 00:00:00 2001 From: Jef Driesen Date: Fri, 30 Nov 2012 09:33:39 +0100 Subject: [PATCH] Add support for a second Sherwood Insight variant. There appears to be two very different versions of the Sherwood Insight. The old Insight needs the veo250 backend, while the newer Insight 2 needs the atom2 backend. Currently only the newer version was included in the list of supported devices, and to increase the confusion it was even named after the old version. With this patch, the old version is added to the list, and the new version is renamed to "Insight 2". --- src/descriptor.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/descriptor.c b/src/descriptor.c index bfce2b5..d43b24f 100644 --- a/src/descriptor.c +++ b/src/descriptor.c @@ -101,6 +101,7 @@ static const dc_descriptor_t g_descriptors[] = { {"Oceanic", "Veo 250", DC_FAMILY_OCEANIC_VEO250, 0x424C}, {"Oceanic", "Veo 180", DC_FAMILY_OCEANIC_VEO250, 0x4252}, {"Aeris", "XR-2", DC_FAMILY_OCEANIC_VEO250, 0x4255}, + {"Sherwood", "Insight", DC_FAMILY_OCEANIC_VEO250, 0x425A}, /* Oceanic Atom 2.0 */ {"Oceanic", "Atom 1.0", DC_FAMILY_OCEANIC_ATOM2, 0x4250}, {"Aeris", "Epic", DC_FAMILY_OCEANIC_ATOM2, 0x4257}, @@ -114,7 +115,7 @@ static const dc_descriptor_t g_descriptors[] = { {"Aeris", "F10", DC_FAMILY_OCEANIC_ATOM2, 0x434D}, {"Oceanic", "OC1", DC_FAMILY_OCEANIC_ATOM2, 0x434E}, {"Sherwood", "Wisdom 2", DC_FAMILY_OCEANIC_ATOM2, 0x4350}, - {"Sherwood", "Insight", DC_FAMILY_OCEANIC_ATOM2, 0x4353}, + {"Sherwood", "Insight 2", DC_FAMILY_OCEANIC_ATOM2, 0x4353}, {"Tusa", "Element II (IQ-750)", DC_FAMILY_OCEANIC_ATOM2, 0x4357}, {"Oceanic", "Veo 1.0", DC_FAMILY_OCEANIC_ATOM2, 0x4358}, {"Oceanic", "Veo 2.0", DC_FAMILY_OCEANIC_ATOM2, 0x4359},