tools/Master.h
author Florian Pose <fp@igh-essen.com>
Thu, 29 May 2008 15:11:26 +0000
changeset 922 fede1d8f5b71
child 935 b954e9d91ea5
permissions -rw-r--r--
Added the new ethercat comman-line tool with lsec functionality.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __EC_MASTER_H__
#define __EC_MASTER_H__

#include <stdexcept>
using namespace std;

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

class MasterException:
    public runtime_error
{
    public:
        /** Constructor with std::string parameter. */
        MasterException(
                const string &s /**< Message. */
                ): runtime_error(s) {}

        /** Constructor with const char pointer parameter. */
        MasterException(
                const char *s /**< Message. */
                ): runtime_error(s) {}
};

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

class Master
{
    public:
        Master();
        ~Master();

        void open(unsigned int);
        void close();

        unsigned int slaveCount();
        void listSlaves();

    protected:
        string slaveState(uint8_t) const;
        
    private:
        unsigned int index;
        int fd;
};

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

#endif