重新构建的批检仪主板程序

This commit is contained in:
andy
2023-11-26 23:05:35 +08:00
parent b1b69d307f
commit 4a70f64693
29 changed files with 2565 additions and 64 deletions

28
prot_cmd/cmd_pc.h Normal file
View File

@@ -0,0 +1,28 @@
#ifndef cmd_pc_h__
#define cmd_pc_h__
#include "prot/prot_pc.h"
// 检测 自研批检仪
class selfdev_check:public HandlePc {
Q_OBJECT
public:
selfdev_check():HandlePc(){}
~selfdev_check(){}
int dolater(int cmd, myarray data);
signals:
void send_to_m4_signal(myarray data);
};
#endif