Skip to content

Commit

Permalink
FIT : Add Polar in Manu/Product list
Browse files Browse the repository at this point in the history
  • Loading branch information
grauser committed Feb 12, 2022
1 parent 150155b commit f09e357
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/FileIO/FitRideFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,14 @@ struct FitFileReaderState
case -1: return "Thinkrider";
default: return QString("Thinkrider %1").arg(prod);
}
} else if (manu == 123) {
// Polar
switch(prod) {
case 2: return "Polar H10";
case 3: return "Polar H9";
case -1: return "Polar";
default: return QString("Polar %1").arg(prod);
}
} else if (manu == 132) {
// cycplus
switch(prod) {
Expand Down

0 comments on commit f09e357

Please sign in to comment.