QuakeGod
2023-10-20 6fa60de2b0d0237054aa7571191df0f291838031
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#pragma once
 
 
// CDialogFactCfg 对话框
class CMTerm1Doc;
 
class CDialogFactCfg : public CDialogEx
{
    DECLARE_DYNAMIC(CDialogFactCfg)
 
public:
    CDialogFactCfg(CWnd* pParent = nullptr);   // 标准构造函数
    virtual ~CDialogFactCfg();
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_DIALOG_FACT_CFG };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
    DECLARE_MESSAGE_MAP()
public:
    enum DataItemType
    {
        typeINT,
        typeUINT,
        typeHEX,
        typeBIN,
        typeFLOAT,
        typeFIX,
        typeBIT,
        typeString,
        typeDATE,
        typeTIME,
        typeDATETIME,
 
    };
    typedef struct tagDataItemDef
    {
        int nOffset;
        int nSize;
        int nType;
        CString sName;
    }stDataItemDef;
 
    typedef struct tagFactoryData        //工厂量产参数数据。
    {
        USHORT Sign1;
        USHORT Seq1;
        USHORT nModelNo;
        USHORT nModelVer;
        UCHAR LOT_NO[16];            //
        UINT nProductDateTime;
        UINT SN1;
        unsigned int nProtocalVer;
        unsigned int nLotNo;
        unsigned int nDefaultFunc;
        char ModelStr[16];
        char SNStr[16];
        unsigned short CRC1;
        unsigned short EndSign1;
 
    }stFactoryData, *pFactoryData;
 
    stDataItemDef FactoryDataItems[50];
    int nFactoryDataItemsCount = 0;
 
    int AddDataItem(int nOffset, int nSize, int nType, CString sName);
 
    int InitDataItems();
 
    int Connect();
    int Disconnect();
    int ReadData();
    afx_msg void OnBnClickedButtonConn();
    afx_msg void OnBnClickedButtonDisconn();
    afx_msg void OnBnClickedButtonWritedata();
    afx_msg void OnBnClickedButtonReaddata();
 
 
    
 
    int WriteData();
    CMTerm1Doc * GetDocument();
 
    int FindIdByName(CString sName);
 
    int GetDataByOffset(void * pDataBlock, int nOffset);
    int GetDataByName(void * pDataBlock, CString sName);
 
    CString GetDataStrByName(void * pDataBlock, CString sName);
 
    int SetDataByName(void * pDataBlock, CString sName, UINT uValue);
    int SetDataByName(void * pDataBlock, CString sName, CString sValue);
 
};