1200
|
1 |
/*****************************************************************************
|
|
2 |
*
|
|
3 |
* $Id$
|
|
4 |
*
|
|
5 |
****************************************************************************/
|
|
6 |
|
|
7 |
#ifndef __COMMANDPHYWRITE_H__
|
|
8 |
#define __COMMANDPHYWRITE_H__
|
|
9 |
|
|
10 |
#include "Command.h"
|
|
11 |
|
|
12 |
/****************************************************************************/
|
|
13 |
|
|
14 |
class CommandPhyWrite:
|
|
15 |
public Command
|
|
16 |
{
|
|
17 |
public:
|
|
18 |
CommandPhyWrite();
|
|
19 |
|
|
20 |
string helpString() const;
|
|
21 |
void execute(MasterDevice &, const StringVector &);
|
|
22 |
|
|
23 |
private:
|
|
24 |
void loadPhyData(ec_ioctl_slave_phy_t *, const istream &);
|
|
25 |
};
|
|
26 |
|
|
27 |
/****************************************************************************/
|
|
28 |
|
|
29 |
#endif
|