I'ved used FitContributor with numerical data and MESG_TYPE_RECORD before successfully, however I am struggling using string data with MESG_TYPE_SESSION.
The App (not Data Field) correctly writes to the Fit File and Garmin Connect, but always shows '0' in the field. Now I am sharing the 256 bytes over two values if that's important. But both are currently showing '0'
The code is:
_recordingFieldScore = _recordingSession.createField("Score", 0, FitContributor.DATA_TYPE_STRING, { :mesgType => FitContributor.MESG_TYPE_SESSION, :units => "Score", :count => 6 });
_recordingFieldHistory = _recordingSession.createField("History", 1, FitContributor.DATA_TYPE_STRING, { :mesgType => FitContributor.MESG_TYPE_SESSION, :units => "History", :count => 250 });
Any ideas?
Cheers
Chris