TestComDlg.cpp
上传用户:holocaust
上传日期:2022-06-17
资源大小:1871k
文件大小:7k
源码类别:

串口编程

开发平台:

C/C++

  1. // TestComDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "TestCom.h"
  5. #include "TestComDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CTestComDlg dialog
  50. CTestComDlg::CTestComDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CTestComDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CTestComDlg)
  54. m_recv = _T("");
  55. m_send = _T("");
  56. //}}AFX_DATA_INIT
  57. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  58. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  59. RxSaveData[100] = 0;
  60. }
  61. void CTestComDlg::DoDataExchange(CDataExchange* pDX)
  62. {
  63. CDialog::DoDataExchange(pDX);
  64. //{{AFX_DATA_MAP(CTestComDlg)
  65. DDX_Control(pDX, IDC_MSCOMM1, m_mscom);
  66. DDX_Text(pDX, IDC_RECV_EDIT, m_recv);
  67. DDX_Text(pDX, IDC_SEND_EDIT, m_send);
  68. //}}AFX_DATA_MAP
  69. }
  70. BEGIN_MESSAGE_MAP(CTestComDlg, CDialog)
  71. //{{AFX_MSG_MAP(CTestComDlg)
  72. ON_WM_SYSCOMMAND()
  73. ON_WM_PAINT()
  74. ON_WM_QUERYDRAGICON()
  75. ON_BN_CLICKED(IDC_SEND, OnSend)
  76. ON_BN_CLICKED(IDC_CLEAR, OnClear)
  77. ON_BN_CLICKED(IDC_ESC, OnEsc)
  78. //}}AFX_MSG_MAP
  79. END_MESSAGE_MAP()
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CTestComDlg message handlers
  82. BOOL CTestComDlg::OnInitDialog()
  83. {
  84. CDialog::OnInitDialog();
  85. // Add "About..." menu item to system menu.
  86. // IDM_ABOUTBOX must be in the system command range.
  87. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  88. ASSERT(IDM_ABOUTBOX < 0xF000);
  89. CMenu* pSysMenu = GetSystemMenu(FALSE);
  90. if (pSysMenu != NULL)
  91. {
  92. CString strAboutMenu;
  93. strAboutMenu.LoadString(IDS_ABOUTBOX);
  94. if (!strAboutMenu.IsEmpty())
  95. {
  96. pSysMenu->AppendMenu(MF_SEPARATOR);
  97. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  98. }
  99. }
  100. // Set the icon for this dialog.  The framework does this automatically
  101. //  when the application's main window is not a dialog
  102. SetIcon(m_hIcon, TRUE); // Set big icon
  103. SetIcon(m_hIcon, FALSE); // Set small icon
  104. // TODO: Add extra initialization here
  105. m_mscom.SetCommPort(1);
  106. m_mscom.SetInBufferSize(1024); //设置输入缓冲区的大小,Bytes  
  107. m_mscom.SetOutBufferSize(512); //设置输入缓冲区的大小,Bytes  
  108. if(!m_mscom.GetPortOpen()) //打开串口 
  109.    m_mscom.SetPortOpen(TRUE);  
  110. m_mscom.SetInputMode(1); //设置输入方式为二进制方式  
  111. m_mscom.SetSettings("9600,n,8,1"); //设置波特率等参数  
  112. m_mscom.SetRThreshold(1); //为1 表示有一个字符即引发事件  
  113. m_mscom.SetInputLen(0); 
  114. return TRUE;  // return TRUE  unless you set the focus to a control
  115. }
  116. void CTestComDlg::OnSysCommand(UINT nID, LPARAM lParam)
  117. {
  118. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  119. {
  120. CAboutDlg dlgAbout;
  121. dlgAbout.DoModal();
  122. }
  123. else
  124. {
  125. CDialog::OnSysCommand(nID, lParam);
  126. }
  127. }
  128. // If you add a minimize button to your dialog, you will need the code below
  129. //  to draw the icon.  For MFC applications using the document/view model,
  130. //  this is automatically done for you by the framework.
  131. void CTestComDlg::OnPaint() 
  132. {
  133. if (IsIconic())
  134. {
  135. CPaintDC dc(this); // device context for painting
  136. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  137. // Center icon in client rectangle
  138. int cxIcon = GetSystemMetrics(SM_CXICON);
  139. int cyIcon = GetSystemMetrics(SM_CYICON);
  140. CRect rect;
  141. GetClientRect(&rect);
  142. int x = (rect.Width() - cxIcon + 1) / 2;
  143. int y = (rect.Height() - cyIcon + 1) / 2;
  144. // Draw the icon
  145. dc.DrawIcon(x, y, m_hIcon);
  146. }
  147. else
  148. {
  149. CDialog::OnPaint();
  150. }
  151. }
  152. // The system calls this to obtain the cursor to display while the user drags
  153. //  the minimized window.
  154. HCURSOR CTestComDlg::OnQueryDragIcon()
  155. {
  156. return (HCURSOR) m_hIcon;
  157. }
  158. void CTestComDlg::OnSend() 
  159. {
  160. // TODO: Add your control notification handler code here
  161. UpdateData(true); 
  162. CByteArray sendArr;   
  163. WORD wLength; 
  164. wLength = m_send.GetLength(); 
  165. sendArr.SetSize(wLength); 
  166. for(int i =0; i<wLength; i++) 
  167.   sendArr.SetAt(i, m_send.GetAt(i)); 
  168. m_mscom.SetOutput(COleVariant(sendArr)); 
  169. }
  170. BEGIN_EVENTSINK_MAP(CTestComDlg, CDialog)
  171.     //{{AFX_EVENTSINK_MAP(CTestComDlg)
  172. ON_EVENT(CTestComDlg, IDC_MSCOMM1, 1 /* OnComm */, OnCommMscomm, VTS_NONE)
  173. //}}AFX_EVENTSINK_MAP
  174. END_EVENTSINK_MAP()
  175. void CTestComDlg::OnCommMscomm() 
  176. {
  177. // TODO: Add your control notification handler code here
  178. //协议的格式 ($开始字符)(节点地址)(数据类型)(数据长度)(。。。有效数据)(*结束字符) 
  179. UpdateData(true); 
  180. VARIANT variant_inp; 
  181. COleSafeArray safearray_inp; 
  182. BOOL bSaveFlag = FALSE;//数据帧开始标志
  183. long i = 0; 
  184. int len,SaveDataCount = 0; //计数信息
  185. int ValidDataLen = 0; //除去帧头信息的有效的数据长度
  186. int SaveDataLen = 0;  //要存储的数据长度
  187. char rxdata[1000];    //数据缓冲区 
  188. CString tmp; 
  189. switch (m_mscom.GetCommEvent()) 
  190.    case 2:
  191.    //表示接收缓冲区内有字符 
  192.    { 
  193. variant_inp = m_mscom.GetInput(); 
  194. safearray_inp = variant_inp; 
  195. len = safearray_inp.GetOneDimSize(); 
  196. for (i = 0; i < len; i++) 
  197.    safearray_inp.GetElement(&i, &rxdata[i]);
  198.    if(rxdata[i]=='$')
  199.    {
  200.    SaveDataCount = 0;
  201.    bSaveFlag = TRUE;
  202.    }
  203.    if(bSaveFlag)
  204.    {
  205.    RxSaveData[SaveDataCount] =  rxdata[i];
  206.    if(SaveDataCount == 3)//节点地址--节点类型--数据长度
  207.    {
  208.    ValidDataLen = Char2Int(RxSaveData[SaveDataCount]);
  209.    SaveDataLen = ValidDataLen+4;//计算数组内应该存储的数据长度,注意数组小标从0开始,'$','*'各占据一个元素
  210.    }
  211.    if((SaveDataCount==SaveDataLen)&&(RxSaveData[SaveDataLen]=='*')&&(SaveDataCount!=0))//SaveDataCount!=0防止SaveDataCount==SaveDataLen==0的情况
  212.    {
  213.    bSaveFlag = FALSE;
  214.    RxSaveData[SaveDataCount+1]='';
  215.    m_recv += RxSaveData;//在此存入数据库,这里模拟存储,便于调试
  216.    }   
  217.   SaveDataCount ++;
  218.   if(bSaveFlag == FALSE)
  219.   {
  220.    SaveDataCount = 0;//仅针对上句,做清零运算,可以不加
  221.   }   
  222.    }
  223.    }    
  224.    UpdateData(false); 
  225.    break; 
  226.    default: 
  227.    break; 
  228.  } 
  229. }
  230. void CTestComDlg::OnClear() 
  231. {
  232. // TODO: Add your control notification handler code here
  233. m_recv.Empty();
  234. UpdateData(FALSE);
  235. }
  236. void CTestComDlg::OnEsc() 
  237. {
  238. // TODO: Add your control notification handler code here
  239. CDialog::OnCancel();
  240. }
  241. int CTestComDlg::Char2Int(char a)
  242. {
  243. if(a>'0'&&a<'9')
  244. {
  245. return (int)(a - '0');
  246. }
  247. else
  248. {
  249. return -1;
  250. }
  251. }