SerialCommDlg.cpp
上传用户:chineseart
上传日期:2022-06-24
资源大小:52k
文件大小:5k
源码类别:

串口编程

开发平台:

Visual C++

  1. // SerialCommDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "SerialComm.h"
  5. #include "SerialCommDlg.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. // CSerialCommDlg dialog
  50. CSerialCommDlg::CSerialCommDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CSerialCommDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CSerialCommDlg)
  54. m_szSend = _T("");
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. }
  59. void CSerialCommDlg::DoDataExchange(CDataExchange* pDX)
  60. {
  61. CDialog::DoDataExchange(pDX);
  62. //{{AFX_DATA_MAP(CSerialCommDlg)
  63. DDX_Control(pDX, IDC_DATARX, m_DataRx);
  64. DDX_Text(pDX, IDC_SEND, m_szSend);
  65. //}}AFX_DATA_MAP
  66. }
  67. BEGIN_MESSAGE_MAP(CSerialCommDlg, CDialog)
  68. //{{AFX_MSG_MAP(CSerialCommDlg)
  69. ON_WM_SYSCOMMAND()
  70. ON_WM_PAINT()
  71. ON_WM_QUERYDRAGICON()
  72. ON_BN_CLICKED(IDC_OPEN, OnOpen)
  73. ON_BN_CLICKED(IDC_WRITE, OnWrite)
  74. ON_BN_CLICKED(IDC_READAVAILABLE, OnReadavailable)
  75. ON_BN_CLICKED(IDC_READ_10, OnRead10)
  76. ON_BN_CLICKED(IDC_READ_1, OnRead1)
  77. ON_BN_CLICKED(IDC_READ_UPTO, OnReadUpto)
  78. //}}AFX_MSG_MAP
  79. END_MESSAGE_MAP()
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CSerialCommDlg message handlers
  82. BOOL CSerialCommDlg::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. return TRUE;  // return TRUE  unless you set the focus to a control
  106. }
  107. void CSerialCommDlg::OnSysCommand(UINT nID, LPARAM lParam)
  108. {
  109. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  110. {
  111. CAboutDlg dlgAbout;
  112. dlgAbout.DoModal();
  113. }
  114. else
  115. {
  116. CDialog::OnSysCommand(nID, lParam);
  117. }
  118. }
  119. // If you add a minimize button to your dialog, you will need the code below
  120. //  to draw the icon.  For MFC applications using the document/view model,
  121. //  this is automatically done for you by the framework.
  122. void CSerialCommDlg::OnPaint() 
  123. {
  124. if (IsIconic())
  125. {
  126. CPaintDC dc(this); // device context for painting
  127. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  128. // Center icon in client rectangle
  129. int cxIcon = GetSystemMetrics(SM_CXICON);
  130. int cyIcon = GetSystemMetrics(SM_CYICON);
  131. CRect rect;
  132. GetClientRect(&rect);
  133. int x = (rect.Width() - cxIcon + 1) / 2;
  134. int y = (rect.Height() - cyIcon + 1) / 2;
  135. // Draw the icon
  136. dc.DrawIcon(x, y, m_hIcon);
  137. }
  138. else
  139. {
  140. CDialog::OnPaint();
  141. }
  142. }
  143. // The system calls this to obtain the cursor to display while the user drags
  144. //  the minimized window.
  145. HCURSOR CSerialCommDlg::OnQueryDragIcon()
  146. {
  147. return (HCURSOR) m_hIcon;
  148. }
  149. void CSerialCommDlg::OnOpen() 
  150. {
  151. m_theCommPort.Init ("COM1",9600,0,1,8);
  152. m_theCommPort.Start ();
  153. }
  154. void CSerialCommDlg::OnWrite() 
  155. {
  156. UpdateData ();
  157.     m_theCommPort.Write(m_szSend, m_szSend.GetLength () );
  158. }
  159. void CSerialCommDlg::OnReadavailable() 
  160. {
  161. std::string szData;
  162. m_theCommPort.ReadAvailable (szData);
  163. m_DataRx.SetWindowText ( szData.c_str() );
  164. }
  165. void CSerialCommDlg::OnRead10() 
  166. {
  167. std::string szData;
  168. m_theCommPort.Read_N (szData,10,-1);
  169. m_DataRx.SetWindowText ( szData.c_str() );
  170. }
  171. void CSerialCommDlg::OnRead1() 
  172. {
  173. std::string szData;
  174. m_theCommPort.Read_N (szData,1,-1);
  175. m_DataRx.SetWindowText ( szData.c_str() );
  176. }
  177. void CSerialCommDlg::OnReadUpto() 
  178. {
  179. std::string szData;
  180. long alCount;
  181. m_theCommPort.Read_Upto (szData,'X',&alCount,-1);
  182. m_DataRx.SetWindowText ( szData.c_str() );
  183. }