summaryrefslogtreecommitdiffstats
path: root/desktop-widgets
diff options
context:
space:
mode:
Diffstat (limited to 'desktop-widgets')
-rw-r--r--desktop-widgets/configuredivecomputerdialog.cpp2
-rw-r--r--desktop-widgets/downloadfromdivecomputer.cpp3
2 files changed, 3 insertions, 2 deletions
diff --git a/desktop-widgets/configuredivecomputerdialog.cpp b/desktop-widgets/configuredivecomputerdialog.cpp
index 79cdcaf2f..27e385df1 100644
--- a/desktop-widgets/configuredivecomputerdialog.cpp
+++ b/desktop-widgets/configuredivecomputerdialog.cpp
@@ -227,7 +227,7 @@ OstcFirmwareCheck::OstcFirmwareCheck(QString product) : parent(0)
{
QUrl url;
memset(&devData, 1, sizeof(devData));
- if (product == "OSTC 3") {
+ if (product == "OSTC 3" || product == "OSTC 3+" || product == "OSTC Cr") {
url = QUrl("http://www.heinrichsweikamp.net/autofirmware/ostc3_changelog.txt");
latestFirmwareHexFile = QString("http://www.heinrichsweikamp.net/autofirmware/ostc3_firmware.hex");
} else if (product == "OSTC Sport") {
diff --git a/desktop-widgets/downloadfromdivecomputer.cpp b/desktop-widgets/downloadfromdivecomputer.cpp
index 4570a3b7c..2fa68b58e 100644
--- a/desktop-widgets/downloadfromdivecomputer.cpp
+++ b/desktop-widgets/downloadfromdivecomputer.cpp
@@ -366,7 +366,8 @@ void DownloadFromDCWidget::on_downloadCancelRetryButton_clicked()
thread->start();
QString product(ui.product->currentText());
- if (product == "OSTC 3" || product == "OSTC Sport")
+ if (product == "OSTC 3" || product == "OSTC 3+" ||
+ product == "OSTC Cr" || product == "OSTC Sport")
ostcFirmwareCheck = new OstcFirmwareCheck(product);
}