From b76cfabb985d364850a04c8a70f5c04293357da4 Mon Sep 17 00:00:00 2001
From: LAPTOP-T815PCOQ\25526 <mr.liuyang@126.com>
Date: 星期五, 15 十一月 2024 10:06:29 +0800
Subject: [PATCH] 1. 添加控件库 2.Axis设定界面文本字体不跟对话框大小变化3.修复修改用户界面的bug
---
SourceCode/Bond/BondEq/Common.h | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/SourceCode/Bond/BondEq/Common.h b/SourceCode/Bond/BondEq/Common.h
index 0dadb20..d37499f 100644
--- a/SourceCode/Bond/BondEq/Common.h
+++ b/SourceCode/Bond/BondEq/Common.h
@@ -4,6 +4,11 @@
#define MC_TIME_SEPAR 1000
+#define UNITA _T("UNITA")
+#define UNITB _T("UNITB")
+#define UNITC _T("C")
+
+
/* Context Ret code */
#define CRC_ACK_REJECT -3
#define CRC_TIMEOUT -2
@@ -87,3 +92,21 @@
/* 按钮id */
#define VIEW_TOOL_BTN_CLOSE 0x1016
+
+/* 单元数据 */
+typedef struct _UNITDATA1
+{
+ ULONG64 time;
+
+ /* 0:上腔体温度 */
+ /* 1:下腔体温度 */
+ /* 2~9:8个腔体监测温度 */
+ float temp[12];
+
+ /* 腔体真空 pa */
+ float vacuum;
+
+ /* 5个压力值 kg */
+ float pressure[5];
+} UNITDATA1;
+
--
Gitblit v1.9.3