Skip to content

Commit

Permalink
FIT : Add Hammerhead as manufacturer
Browse files Browse the repository at this point in the history
  • Loading branch information
Benedikt Stegmaier authored and grauser committed Jun 7, 2019
1 parent 27e044f commit f334097
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/FileIO/FitRideFile.cpp
Expand Up @@ -537,6 +537,13 @@ struct FitFileReaderState
} else if (manu == 284) {
// Rouvy
return "Rouvy";
} else if (manu == 289) {
// Hammerhead
// currently not setting product ids
switch (prod) {
case -1: return "Hammerhead";
default: return QString("Hammerhead %1").arg(prod);
}
} else {
QString name = "Unknown FIT Device";
return name + QString(" %1:%2").arg(manu).arg(prod);
Expand Down

0 comments on commit f334097

Please sign in to comment.