tool/CommandPdos.h
author Florian Pose <fp@igh-essen.com>
Fri, 25 Jul 2008 08:54:59 +0000
changeset 1147 0eac1ee8512a
parent 1142 59be91dfcbe1
child 1151 1fc1535dec29
permissions -rw-r--r--
Show attached slave position and state in 'ethercat config'.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __COMMANDPDOS_H__
#define __COMMANDPDOS_H__

#include "Command.h"

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

class CommandPdos:
    public Command
{
    public:
        CommandPdos();

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

    protected:
		void listSlavePdos(MasterDevice &, uint16_t, bool);
};

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

#endif