diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/btdiscovery.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/btdiscovery.cpp b/core/btdiscovery.cpp index 73a0ab803..a979bd2d9 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -116,6 +116,11 @@ static dc_descriptor_t *getDeviceType(QString btName) // but that seems to be just happenstance. vendor = "Ratio"; product = "iX3M GPS Easy"; // we don't know which of the GPS models, so set one + } else if (btName.contains(QRegularExpression("^IX5M\\d{6}"))) { + // The 2021 iX3M models (square buttons) report as iX5M, + // eventhough the physical model states iX3M. + vendor = "Ratio"; + product = "iX3M GPS Easy"; // we don't know which of the GPS models, so set one } else if (btName == "COSMIQ") { vendor = "Deepblu"; product = "Cosmiq+"; |