I'm struggling to get starated with the SDK reading fit files.
When using the c example of decode (from within Visual Studio), the fit file is opened successfully, but in this call:
convert_return = FitConvert_Read(buf, buf_size),
The return value (i.e., convert_return) is 0 during the approximately 20,000 call (in one of several fit files I've tried) and the only message that is output is:
"File converted successfully."
convert_return is never FIT_CONVERT_MESSAGE_AVAILABLE, and no other messages are output.
Am I missing something conceptually? Does the c decode example work?
The C++ example outputs the Type, Manufacture, Product, and Serial number, but not activity data. Shouldn't it output the activity?
The csv example does output all the data, but I'd prefer not to go to csv...
Thanks!