tools/Master.h
author Richard Hacker <ha@igh-essen.com>
Fri, 30 May 2008 07:11:27 +0000
changeset 923 a6b51990e7e6
parent 922 fede1d8f5b71
child 935 b954e9d91ea5
permissions -rw-r--r--
Changed Pdo entry registration function - return byte and bit positions
/*****************************************************************************
 *
 * $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