Moxy FIT file support

.. type 54/57 in .fit file for thb and smO2
This commit is contained in:
Mark Liversedge
2014-11-04 14:31:17 +00:00
parent 4138bde7e9
commit 5eceef6dda

View File

@@ -493,6 +493,12 @@ struct FitFileReaderState
case 53: // RUNNING CADENCE FRACTIONAL VALUE
break;
case 54: // tHb
tHb= value/10.0f;
break;
case 57: // SMO2
smO2= value/10.0f;
break;
default:
unknown_record_fields.insert(field.num);
}