批检仪检测流程验证成功
This commit is contained in:
@@ -109,6 +109,53 @@ signals:
|
||||
|
||||
|
||||
|
||||
// 本机升级
|
||||
class selfdev_hostupdate : public selfdev_slaveupdate
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
selfdev_hostupdate() : selfdev_slaveupdate() {}
|
||||
~selfdev_hostupdate() {}
|
||||
int dolater(int cmd, myarray data);
|
||||
};
|
||||
|
||||
|
||||
|
||||
// jwt升级
|
||||
class selfdev_jwtupdate : public selfdev_slaveupdate
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
selfdev_jwtupdate() : selfdev_slaveupdate() {}
|
||||
~selfdev_jwtupdate() {}
|
||||
int dolater(int cmd, myarray data);
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
// 自检
|
||||
class selfdev_bootinfo : public HandlePc
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
selfdev_bootinfo() : HandlePc() {
|
||||
slave_acked_num=0;
|
||||
}
|
||||
~selfdev_bootinfo() {
|
||||
}
|
||||
int dolater(int cmd, myarray data);
|
||||
void timeout();
|
||||
public slots:
|
||||
void slave_end_slot(int addr,int ack, myarray data);
|
||||
protected:
|
||||
QList<myarray> slave_acked;
|
||||
int slave_acked_num;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user