'Just Row' via the API

Post questions and issues with Concept2 PM3 SDK
Post Reply
User avatar
kdahlhaus
500m Poster
Posts: 95
Joined: September 17th, 2006, 2:13 pm
Contact:

'Just Row' via the API

Post by kdahlhaus » November 10th, 2008, 3:12 pm

I can't seem to set a 'Just Row' workout via the API.

This is what I have so far:

Code: Select all

void Pm3Erg::doJustRow(int split)
{

    reset();
    goFinished();
    goIdle();
    if (split>0)
    {
        setSplitDurationInMeters(split);
    }
    setProgram(0);
    goReady();
    goInUse();
    setJustRow=true;
}
But alas, it seems to use the last program (set distance) as the row type. I'm beginning to think there is not a way to set 'Just Row' via the API, as the phrase only appears in a 'get row type' message in the API docs.

Does anyone have an idea on this?

Post Reply