Skip to content

Commit

Permalink
Decode Garmin Real-time Stamina from FIT files
Browse files Browse the repository at this point in the history
Fixes #4253
  • Loading branch information
amtriathlon committed Aug 3, 2022
1 parent dc470ec commit 394309a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/FileIO/FitRideFile.cpp
Expand Up @@ -619,8 +619,8 @@ struct FitFileReaderState
case 90: // PERFORMANCE_CONDITION
return "PERFORMANCECONDITION"; // Performance Contition

case 108: // to confirm : RESPIRATIONRATE
return "RESPIRATIONRATE"; // Performance Contition
case 108: // RESPIRATIONRATE
return "RESPIRATIONRATE";

case 114: // MTB Dynamics - Grit
return "GRIT";
Expand All @@ -631,6 +631,12 @@ struct FitFileReaderState
case 116: // Stress
return "STRESS";

case 137: // Potential Stamina
return "POTENTIALSTAMINA";

case 138: // Stamina
return "STAMINA";

default:
return QString("FIELD_%1").arg(native_num);
}
Expand Down

0 comments on commit 394309a

Please sign in to comment.