2023-11-26 23:05:35 +08:00
|
|
|
#ifndef CMD_SLAVE_H
|
|
|
|
#define CMD_SLAVE_H
|
|
|
|
|
|
|
|
#include "prot/prot_slave.h"
|
|
|
|
|
|
|
|
|
|
|
|
class slave_check:public HandleSlave
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
slave_check():HandleSlave(){}
|
|
|
|
int start(myarray data);
|
2023-11-27 14:31:00 +08:00
|
|
|
int dolater(int cmd, myarray data);
|
|
|
|
void timeout();
|
2023-11-26 23:05:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CMD_SLAVE_H
|