From cf6c0d6640e9be430822c40ee8fab8d27adcddf8 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sun, 16 Feb 2020 08:50:38 -0800 Subject: [PATCH] Cressi: mark Cartesio and Goa as supporting BLE They don't actually have any native BLE capabilities, but there's a "HAL 9000" docking station with bluetooth capability (and a USB cable for wired connectivity). This will need more work, the BLE communication is packetized differently from the regular serial one. But I'm keeping this difference from Jef's upstream for posterity. Signed-off-by: Linus Torvalds --- src/descriptor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/descriptor.c b/src/descriptor.c index 07f418f..9836d52 100644 --- a/src/descriptor.c +++ b/src/descriptor.c @@ -306,8 +306,8 @@ static const dc_descriptor_t g_descriptors[] = { {"Cressi", "Newton", DC_FAMILY_CRESSI_LEONARDO, 5, DC_TRANSPORT_SERIAL, NULL}, {"Cressi", "Drake", DC_FAMILY_CRESSI_LEONARDO, 6, DC_TRANSPORT_SERIAL, NULL}, /* Cressi Goa */ - {"Cressi", "Cartesio", DC_FAMILY_CRESSI_GOA, 1, DC_TRANSPORT_SERIAL, NULL}, - {"Cressi", "Goa", DC_FAMILY_CRESSI_GOA, 2, DC_TRANSPORT_SERIAL, NULL}, + {"Cressi", "Cartesio", DC_FAMILY_CRESSI_GOA, 1, DC_TRANSPORT_SERIAL | DC_TRANSPORT_BLE, NULL}, + {"Cressi", "Goa", DC_FAMILY_CRESSI_GOA, 2, DC_TRANSPORT_SERIAL | DC_TRANSPORT_BLE, NULL}, /* Zeagle N2iTiON3 */ {"Zeagle", "N2iTiON3", DC_FAMILY_ZEAGLE_N2ITION3, 0, DC_TRANSPORT_SERIAL, NULL}, {"Apeks", "Quantum X", DC_FAMILY_ZEAGLE_N2ITION3, 0, DC_TRANSPORT_SERIAL, NULL},