tool/CommandUpload.h
author Florian Pose <fp@igh-essen.com>
Fri, 01 Aug 2008 10:10:55 +0000
changeset 1184 75cd6681eb08
parent 1142 59be91dfcbe1
child 1363 11c0b2caa253
permissions -rw-r--r--
Introduced SdoCommand class to replace coe_datatypes.[ch]; added CoE abort codes in user space-
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __COMMANDUPLOAD_H__
#define __COMMANDUPLOAD_H__

#include "SdoCommand.h"

/****************************************************************************/

class CommandUpload:
    public SdoCommand
{
    public:
        CommandUpload();

        string helpString() const;
        void execute(MasterDevice &, const StringVector &);

    protected:
		enum {DefaultBufferSize = 1024};

        static void printRawData(const uint8_t *, unsigned int);
};

/****************************************************************************/

#endif