dpjDlg.cpp
上传用户:xlxx0122
上传日期:2022-05-09
资源大小:47k
文件大小:7k
源码类别:

通讯编程

开发平台:

Visual C++

  1. // dpjDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "dpj.h"
  5. #include "dpjDlg.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. // CDpjDlg dialog
  50. CDpjDlg::CDpjDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CDpjDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CDpjDlg)
  54. m_send = _T("");
  55. m_receive = _T("");
  56. m_state = _T("");
  57. //}}AFX_DATA_INIT
  58. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  59. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  60. }
  61. void CDpjDlg::DoDataExchange(CDataExchange* pDX)
  62. {
  63. CDialog::DoDataExchange(pDX);
  64. //{{AFX_DATA_MAP(CDpjDlg)
  65. DDX_Control(pDX, IDC_EDIT1, m_ctrlsend);
  66. DDX_Control(pDX, IDC_MSCOMM1, m_ctrlComm);
  67. DDX_Text(pDX, IDC_EDIT1, m_send);
  68. DDX_Text(pDX, IDC_EDIT2, m_receive);
  69. DDX_Text(pDX, IDC_EDIT3, m_state);
  70. //}}AFX_DATA_MAP
  71. }
  72. BEGIN_MESSAGE_MAP(CDpjDlg, CDialog)
  73. //{{AFX_MSG_MAP(CDpjDlg)
  74. ON_WM_SYSCOMMAND()
  75. ON_WM_PAINT()
  76. ON_WM_QUERYDRAGICON()
  77. ON_EN_SETFOCUS(IDC_EDIT1, OnSetfocusEdit1)
  78. //}}AFX_MSG_MAP
  79. END_MESSAGE_MAP()
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CDpjDlg message handlers
  82. BOOL CDpjDlg::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_ctrlComm.SetCommPort(2);   //选择COM1
  106. m_ctrlComm.SetInputMode(1); //输入方式为二进制方式
  107. m_ctrlComm.SetInBufferSize(1024); //设置输入缓冲区大小
  108. m_ctrlComm.SetRThreshold(1); //参数1表示每当串口接收缓冲区中有多于或等于1个字符时将引发一个接收数据的OnComm事件
  109.     m_ctrlComm.SetSThreshold(1);//参数1表示当传输缓冲区完全空时将引发一个接收数据的OnComm事件
  110. m_ctrlComm.SetSettings("9600,n,8,1"); 
  111. m_ctrlComm.SetPortOpen(TRUE);//打开串口
  112.     m_send="00";
  113. UpdateData(FALSE);  //更新编辑框内容
  114. return TRUE;  // return TRUE  unless you set the focus to a control
  115. }
  116. void CDpjDlg::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 CDpjDlg::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 CDpjDlg::OnQueryDragIcon()
  155. {
  156. return (HCURSOR) m_hIcon;
  157. }
  158. void CDpjDlg::OnOK() 
  159. {
  160. // TODO: Add extra validation here
  161.     CByteArray hexdata; 
  162. UpdateData(TRUE);  //读编辑框内容
  163. int len=Str2Hex(m_send,hexdata);
  164.   UpdateData(FALSE);  //更新编辑框内容
  165. m_ctrlComm.SetOutput(COleVariant(hexdata));
  166. }
  167. BEGIN_EVENTSINK_MAP(CDpjDlg, CDialog)
  168.     //{{AFX_EVENTSINK_MAP(CDpjDlg)
  169. ON_EVENT(CDpjDlg, IDC_MSCOMM1, 1 /* OnComm */, OnOnCommMscomm, VTS_NONE)
  170. //}}AFX_EVENTSINK_MAP
  171. END_EVENTSINK_MAP()
  172. void CDpjDlg::OnOnCommMscomm() 
  173. {
  174. // TODO: Add your control notification handler code here
  175. VARIANT variant_inp;
  176. COleSafeArray safearray_inp;
  177. LONG len,k;
  178. BYTE rxdata[512]; //设置BYTE数组
  179. CString strtemp;
  180.    if(m_ctrlComm.GetCommEvent()==2) //事件值为2表示接收缓冲区内有字符
  181. {
  182. variant_inp=m_ctrlComm.GetInput(); //读缓冲区
  183. safearray_inp=variant_inp;  //VARIANT型变量转换为ColeSafeArray型变量
  184. len=safearray_inp.GetOneDimSize(); //得到有效数据长度
  185. for(k=0;k<len;k++)
  186. safearray_inp.GetElement(&k,rxdata+k);//转换为BYTE型数组
  187. for(k=0;k<len;k++)             //将数组转换为Cstring型变量
  188. {
  189. BYTE bt=*(char*)(rxdata+k);    //字符型
  190. strtemp.Format("%02X",bt);    //将字符送入临时变量strtemp存放
  191.         m_receive=strtemp;//加入对应字符串m_receive中
  192. }
  193.    }
  194.     else
  195.    m_receive="数据未收到 "; 
  196.    if(strtemp=="00")
  197.     {      
  198. m_state="开始通信!";
  199. }
  200. else if(strtemp==m_send)
  201.     {  
  202.       m_state="通信正常!";
  203.     }
  204. else
  205. {  
  206.       m_state="通信不正常!";
  207.     }
  208.     if(strtemp=="FF")
  209.     {      
  210. m_state="通信结束,输入00重新开始!";
  211. }
  212.     UpdateData(FALSE);  //更新编辑框内容
  213. }
  214. //将字符转换十六进制
  215. char CDpjDlg::HexChar(char c)
  216. {
  217.     if((c>='0')&&(c<='9'))
  218. return c-0x30;
  219. else if((c>='A')&&(c<='F'))
  220. return c-'A'+10;
  221. else if((c>='a')&&(c<='f'))
  222. return c-'a'+10;
  223. else 
  224. return -1;
  225. }
  226. //将字符串转换成十六进制
  227. int CDpjDlg::Str2Hex(CString str, CByteArray &senddata)
  228. {
  229.     int hexdata,lowhexdata;
  230. int hexdatalen=0;
  231. int len=str.GetLength();
  232. senddata.SetSize(len/2);
  233. for(int i=0;i<len;)
  234. {
  235. char lstr,hstr=str[i];
  236. if(hstr==' ')
  237. {
  238. i++;
  239. continue;
  240. }
  241. i++;
  242. if(i>=len)
  243. break;
  244. lstr=str[i];
  245. hexdata=HexChar(hstr);    //高位转换
  246. lowhexdata=HexChar(lstr); //低位转换
  247. if((hexdata==16)||(lowhexdata==16))
  248. break;
  249. else 
  250. hexdata=hexdata*16+lowhexdata;
  251. i++;
  252. senddata[hexdatalen]=(char)hexdata;
  253. hexdatalen++;
  254. }
  255. return hexdatalen;
  256. }
  257. void CDpjDlg::OnCancel() 
  258. {
  259. // TODO: Add extra cleanup here
  260. m_ctrlComm.SetPortOpen(FALSE);//关闭串口
  261. CDialog::OnCancel();
  262. }
  263. void CDpjDlg::OnSetfocusEdit1() //Edit1文本框得到焦点
  264. {
  265. // TODO: Add your control notification handler code here
  266. m_ctrlsend.SetSel(0,-1);//Edit1文本框中字符全选中
  267. m_ctrlsend.Clear();     //清除Edit1文本框中的所有字符
  268. }