tool/coe_datatypes.h
author Florian Pose <fp@igh-essen.com>
Wed, 23 Jul 2008 07:26:19 +0000
changeset 1134 3356141fa2f8
parent 1126 b09fd81894cb
permissions -rw-r--r--
Renamed sdo_download command to download. Same with upload.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#include <inttypes.h>

#include <string>
using namespace std;

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

struct CoEDataType {
    const char *name;
    uint16_t coeCode;
    unsigned int byteSize;
};

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

const CoEDataType *findDataType(const string &);
const CoEDataType *findDataType(uint16_t);

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