I successfully parsed a .fit file with Java SDK. For each record I call:
public void onMesg(RecordMesg mesg) {
System.out.println(mesg.getTimestamp().toString());
}
The problem here is that it prints the same timestamp (i.e. Tue Aug 30 20:35:00 WEST 2011) for a high volume of records and then it starts printing another different timestamp for a range of records, and so on.
I checked the .csv file and I saw this progression which is what I was hoping to find with the SDK:
683666985
683666986
683666987
....
Do you think it's a problem with the SDK or with the precision of the timestamp?
Thanks