robot arm demo team / Mbed 2 deprecated RobotArmDemo Featured

Dependencies:   AX-12A Dynamixel mbed iothub_client EthernetInterface NTPClient ConfigFile SDFileSystem iothub_amqp_transport mbed-rtos proton-c-mbed wolfSSL

ActionBuf.cpp

Committer:
henryrawas
Date:
2015-12-31
Revision:
8:d98e2dec0f40
Parent:
4:36a4eceb1b7f
Child:
10:9b21566a5ddb

File content as of revision 8:d98e2dec0f40:

#include "mbed.h"
#include "rtos.h"

#include "ActionBuf.h"



SafeCircBuf<ActionGroup, ActionBufSize, uint32_t> ActionBuf;

bool ActionGroup::SetAction(ArmAction aId, char* args)
{
    if (strlen(args) < ActionArgSize)
    {
        ActionId = aId;

        strcpy(ActionArg, args); 
        
        return true;
    }
    return false;
}


ActionSequence::ActionSequence()
{
};

ActionSequence::ActionSequence(SequenceAction aType)
{
    ActionType = aType;
    Param = 0;
};

ActionSequence::ActionSequence(SequenceAction aType, vector<float>& vals, int param)
{
    ActionType = aType;
    GoalVals = vals;
    Param = param;
}

void ActionSequence::SetGoal(vector<float>& vals)
{
    GoalVals = vals;
}

void ActionSequence::SetParam(int param)
{
    Param = param;
}
    
void ActionSequence::SetAction(SequenceAction aType)
{
    ActionType = aType;
}