批检仪检测流程验证成功

This commit is contained in:
ranchuan
2023-12-07 18:29:49 +08:00
parent 32129cbf9a
commit dc6487c309
15 changed files with 438 additions and 25 deletions

View File

@@ -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