complDlg.cpp
上传用户:zhuozewu
上传日期:2022-07-26
资源大小:37k
文件大小:6k
源码类别:

串口编程

开发平台:

Visual C++

  1. // complDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "compl.h"
  5. #include "complDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CComplDlg dialog
  13. CComplDlg::CComplDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CComplDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CComplDlg)
  17. m_sReseved = 0;
  18. m_sSend = 0;
  19. m_sPort = 0;
  20. m_nBt = 3600;
  21. m_nSETBT = 4;
  22. //}}AFX_DATA_INIT
  23. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  24. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  25. }
  26. void CComplDlg::DoDataExchange(CDataExchange* pDX)
  27. {
  28. CDialog::DoDataExchange(pDX);
  29. //{{AFX_DATA_MAP(CComplDlg)
  30. DDX_Control(pDX, IDC_EDIT_SEND, m_cEditsend);
  31. DDX_Control(pDX, IDC_SETUPCOM, m_cSetupcomm);
  32. DDX_Control(pDX, IDC_SEND, m_cSend);
  33. DDX_Control(pDX, IDC_RESEVED, m_cReseved);
  34. DDX_Control(pDX, IDC_OPENCOMM, m_cOpencomm);
  35. DDX_Control(pDX, IDC_CLOSECOMM, m_cClosecomm);
  36. DDX_Text(pDX, IDC_EDIT_RESEVED, m_sReseved);
  37. DDX_Text(pDX, IDC_EDIT_SEND, m_sSend);
  38. DDX_CBIndex(pDX, IDC_COMBO_SELECT, m_sPort);
  39. DDX_Text(pDX, IDC_EDIT_BAUT, m_nBt);
  40. DDX_CBIndex(pDX, IDC_BTSETUP, m_nSETBT);
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CComplDlg, CDialog)
  44. //{{AFX_MSG_MAP(CComplDlg)
  45. ON_WM_PAINT()
  46. ON_WM_QUERYDRAGICON()
  47. ON_BN_CLICKED(IDC_RESEVED, OnReseved)
  48. ON_BN_CLICKED(IDC_SEND, OnSend)
  49. ON_BN_CLICKED(IDC_SETUPCOM, OnSetupcom)
  50. ON_CBN_SELCHANGE(IDC_BTSETUP, OnSelchangeBtsetup)
  51. ON_BN_CLICKED(IDC_CLOSECOMM, OnClosecomm)
  52. ON_BN_CLICKED(IDC_OPENCOMM, OnOpencomm)
  53. //}}AFX_MSG_MAP
  54. END_MESSAGE_MAP()
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CComplDlg message handlers
  57. BOOL CComplDlg::OnInitDialog()
  58. {
  59. CDialog::OnInitDialog();
  60. // Set the icon for this dialog.  The framework does this automatically
  61. //  when the application's main window is not a dialog
  62. SetIcon(m_hIcon, TRUE); // Set big icon
  63. SetIcon(m_hIcon, FALSE); // Set small icon
  64. m_cClosecomm.EnableWindow(false);
  65. m_cSend.EnableWindow(false);
  66. m_cSetupcomm.EnableWindow(false);
  67. m_cReseved.EnableWindow(false);
  68. // TODO: Add extra initialization here
  69. return TRUE;  // return TRUE  unless you set the focus to a control
  70. }
  71. // If you add a minimize button to your dialog, you will need the code below
  72. //  to draw the icon.  For MFC applications using the document/view model,
  73. //  this is automatically done for you by the framework.
  74. void CComplDlg::OnPaint() 
  75. {
  76. if (IsIconic())
  77. {
  78. CPaintDC dc(this); // device context for painting
  79. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  80. // Center icon in client rectangle
  81. int cxIcon = GetSystemMetrics(SM_CXICON);
  82. int cyIcon = GetSystemMetrics(SM_CYICON);
  83. CRect rect;
  84. GetClientRect(&rect);
  85. int x = (rect.Width() - cxIcon + 1) / 2;
  86. int y = (rect.Height() - cyIcon + 1) / 2;
  87. // Draw the icon
  88. dc.DrawIcon(x, y, m_hIcon);
  89. dc.SetBkColor(RGB(250,0,0));
  90. }
  91. else
  92. {
  93. CDialog::OnPaint();
  94. }
  95. }
  96. // The system calls this to obtain the cursor to display while the user drags
  97. //  the minimized window.
  98. HCURSOR CComplDlg::OnQueryDragIcon()
  99. {
  100. return (HCURSOR) m_hIcon;
  101. }
  102. void CComplDlg::OnReseved() 
  103. {
  104. // TODO: Add your control notification handler code here
  105. UpdateData(true);
  106.     //CSetupc::OnSetup();
  107. DWORD length=0;
  108. unsigned ch[10];
  109. UpdateData(false);
  110. ReadFile(hCom,ch,1,&length,NULL);
  111. ch[0]=ch[0]-3435973632;
  112. m_sReseved=ch[0];
  113. SetCommMask(hCom,EV_TXEMPTY);
  114. UpdateData(false);
  115. //
  116. }
  117. void CComplDlg::OnSend() 
  118. {
  119. // TODO: Add your control notification handler code here
  120. UpdateData(true); 
  121.     //CSetupc::OnSetup();
  122. DWORD length=0;
  123. unsigned ch[10];
  124. ch[0]=m_sSend;
  125. WriteFile(hCom,ch,1,&length,NULL);
  126. m_cReseved.EnableWindow(true);
  127. }
  128. void CComplDlg::OnSetupcom() 
  129. {
  130. // TODO: Add your control notification handler code here
  131. UpdateData(true); 
  132. // TODO: Add your control notification handler code here
  133. //HANDLE hCom;
  134. SetupComm(hCom,1024,1024);
  135. COMMTIMEOUTS Timeouts;
  136. //DCB dcb;
  137. Timeouts.ReadIntervalTimeout=50;
  138.     Timeouts.ReadTotalTimeoutConstant=500;
  139. Timeouts.ReadTotalTimeoutMultiplier=50;
  140. Timeouts.WriteTotalTimeoutConstant=500;
  141. Timeouts.WriteTotalTimeoutMultiplier=50;
  142. SetCommTimeouts(hCom,&Timeouts);
  143.     int m_nSetupbt;
  144. switch(m_nSETBT)
  145. {case 0: m_nSetupbt=1200;break;
  146. case 1: m_nSetupbt=2400;break;
  147. case 2: m_nSetupbt=3600;break;
  148. case 3: m_nSetupbt=4800;break;
  149. case 4: m_nSetupbt=9600;break;
  150. case 5: m_nSetupbt=19200;break;}
  151. GetCommState(hCom,&dcb);
  152. dcb.BaudRate=10000;//m_nSetupbt;
  153. dcb.ByteSize=8;
  154. dcb.StopBits=ONESTOPBIT;
  155. dcb.Parity=NOPARITY;
  156. SetCommState(hCom,&dcb);
  157. UpdateData(false);
  158. m_cSend.EnableWindow(true);
  159. m_cSend.SetFocus();
  160. m_cSetupcomm.EnableWindow(false);
  161. m_cEditsend.SetFocus();
  162. }
  163. void CComplDlg::OnSelchangeBtsetup() 
  164. {
  165. // TODO: Add your control notification handler code here
  166. UpdateData(true);
  167. m_nBt=m_nSetupbt;
  168. UpdateData(false);
  169. }
  170. void CComplDlg::OnClosecomm() 
  171. {
  172. // TODO: Add your control notification handler code here
  173. CloseHandle(hCom);
  174. m_cOpencomm.EnableWindow(true);
  175.     m_cOpencomm.SetFocus();
  176. m_cReseved.EnableWindow(false);
  177. m_cSend.EnableWindow(false);
  178. m_cClosecomm.EnableWindow(false);
  179. m_cSetupcomm.EnableWindow(false);
  180. }
  181. void CComplDlg::OnOpencomm() 
  182. {
  183. // TODO: Add your control notification handler code here
  184. switch(m_sPort)
  185. {case 0: m_strPort="COM1";  break;
  186. case 1:  m_strPort="COM2";  break;}
  187. hCom=CreateFile(m_strPort,GENERIC_READ|GENERIC_WRITE,
  188.             0,NULL,OPEN_EXISTING,
  189. FILE_ATTRIBUTE_NORMAL,
  190. NULL);
  191. m_cClosecomm.EnableWindow(true);
  192. m_cSetupcomm.EnableWindow(true);
  193. m_cSetupcomm.SetFocus();
  194. m_cSend.EnableWindow(false);
  195.     m_cOpencomm.EnableWindow(false);
  196.     m_cReseved.EnableWindow(false);
  197. }
  198. void CComplDlg::OnCancel() 
  199. {
  200. // TODO: Add extra cleanup here
  201. CComplDlg::OnClosecomm();
  202. CDialog::OnCancel();
  203. }