mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
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>
This commit is contained in:
parent
02dcae3eca
commit
856ec092b7
3 changed files with 39 additions and 3 deletions
|
@ -690,12 +690,22 @@ void FirmwareUpdateThread::run()
|
||||||
dc_status_t rc;
|
dc_status_t rc;
|
||||||
rc = dc_device_open(&m_data->device, m_data->context, m_data->descriptor, m_data->devname);
|
rc = dc_device_open(&m_data->device, m_data->context, m_data->descriptor, m_data->devname);
|
||||||
if (rc == DC_STATUS_SUCCESS) {
|
if (rc == DC_STATUS_SUCCESS) {
|
||||||
|
switch (dc_device_get_type(m_data->device)) {
|
||||||
#if DC_VERSION_CHECK(0, 5, 0)
|
#if DC_VERSION_CHECK(0, 5, 0)
|
||||||
if (dc_device_get_type(m_data->device) == DC_FAMILY_HW_OSTC3) {
|
case DC_FAMILY_HW_OSTC3:
|
||||||
supported = true;
|
//Not Yet supported
|
||||||
|
//supported = true;
|
||||||
//hw_ostc3_device_fwupdate(m_data->device, m_fileName.toUtf8().data());
|
//hw_ostc3_device_fwupdate(m_data->device, m_fileName.toUtf8().data());
|
||||||
}
|
break;
|
||||||
#endif // divecomputer 0.5.0
|
#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);
|
dc_device_close(m_data->device);
|
||||||
|
|
||||||
if (!supported) {
|
if (!supported) {
|
||||||
|
|
|
@ -622,6 +622,11 @@ void ConfigureDiveComputerDialog::on_DiveComputerList_currentRowChanged(int curr
|
||||||
selected_product = "Vyper";
|
selected_product = "Vyper";
|
||||||
ui.updateFirmwareButton->setEnabled(false);
|
ui.updateFirmwareButton->setEnabled(false);
|
||||||
break;
|
break;
|
||||||
|
case 2:
|
||||||
|
selected_vendor = "Heinrichs Weikamp";
|
||||||
|
selected_product = "OSTC 2N";
|
||||||
|
ui.updateFirmwareButton->setEnabled(true);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
/* Not Supported */
|
/* Not Supported */
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -184,6 +184,11 @@
|
||||||
<normaloff>:/icons/suunto_vyper.png</normaloff>:/icons/suunto_vyper.png</iconset>
|
<normaloff>:/icons/suunto_vyper.png</normaloff>:/icons/suunto_vyper.png</iconset>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>OSTC, Mk.2/2N/2C</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QStackedWidget" name="dcStackedWidget">
|
<widget class="QStackedWidget" name="dcStackedWidget">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
|
@ -1594,6 +1599,22 @@
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
<widget class="QWidget" name="page_ostc">
|
||||||
|
<layout class="QVBoxLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QTabWidget" name="tabWidget3">
|
||||||
|
<property name="currentIndex">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="basicSettings3">
|
||||||
|
<attribute name="title">
|
||||||
|
<string>Basic settings</string>
|
||||||
|
</attribute>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
Loading…
Reference in a new issue