summaryrefslogtreecommitdiffstats
path: root/configuredivecomputerthreads.cpp
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2014-10-20 22:58:25 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-10-20 18:12:37 -0700
commit856ec092b73acc8bc7942beb2e040647c848a354 (patch)
tree9e55b75787f2a6994f0ab1f40c2479d4c4370f75 /configuredivecomputerthreads.cpp
parent02dcae3eca69447f2f51e258fccb6081d261c544 (diff)
downloadsubsurface-856ec092b73acc8bc7942beb2e040647c848a354.tar.gz
Configure support for OSTC, Mk.2/2N/2C
First out is firmware updates. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'configuredivecomputerthreads.cpp')
-rw-r--r--configuredivecomputerthreads.cpp16
1 files changed, 13 insertions, 3 deletions
diff --git a/configuredivecomputerthreads.cpp b/configuredivecomputerthreads.cpp
index a96548e0f..7856a150f 100644
--- a/configuredivecomputerthreads.cpp
+++ b/configuredivecomputerthreads.cpp
@@ -690,12 +690,22 @@ void FirmwareUpdateThread::run()
dc_status_t rc;
rc = dc_device_open(&m_data->device, m_data->context, m_data->descriptor, m_data->devname);
if (rc == DC_STATUS_SUCCESS) {
+ switch (dc_device_get_type(m_data->device)) {
#if DC_VERSION_CHECK(0, 5, 0)
- if (dc_device_get_type(m_data->device) == DC_FAMILY_HW_OSTC3) {
- supported = true;
+ case DC_FAMILY_HW_OSTC3:
+ //Not Yet supported
+ //supported = true;
//hw_ostc3_device_fwupdate(m_data->device, m_fileName.toUtf8().data());
- }
+ break;
#endif // divecomputer 0.5.0
+ case DC_FAMILY_HW_OSTC:
+ supported = true;
+ hw_ostc_device_fwupdate(m_data->device, m_fileName.toUtf8().data());
+ break;
+ default:
+ supported = false;
+ break;
+ }
dc_device_close(m_data->device);
if (!supported) {