资源简介
本资源属于一个将串口调试助手与TCP/IP通信上位机软件设计到了一起,由于我自己在做一个物联网方面的实验,需要用到TCP/IP使得手机和电脑可以通信,然后再通过串口控制开发板,从而达到手机无线控制开发板的目的!希望对大家有所帮助!辛苦之作,赚点积分!
代码片段和文件信息
// DaDa_WLW.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “DaDa_WLW.h“
#include “DaDa_WLWDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDaDa_WLWApp
BEGIN_MESSAGE_MAP(CDaDa_WLWApp CWinApp)
//{{AFX_MSG_MAP(CDaDa_WLWApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDaDa_WLWApp construction
CDaDa_WLWApp::CDaDa_WLWApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDaDa_WLWApp object
CDaDa_WLWApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDaDa_WLWApp initialization
BOOL CDaDa_WLWApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CDaDa_WLWDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-09-26 13:39 DaDa_WLW\
目录 0 2017-09-26 13:39 DaDa_WLW\.vs\
目录 0 2017-09-26 13:39 DaDa_WLW\.vs\DaDa_WLW\
目录 0 2017-09-26 13:39 DaDa_WLW\.vs\DaDa_WLW\v14\
文件 7680 2017-09-18 11:48 DaDa_WLW\.vs\DaDa_WLW\v14\.suo
目录 0 2018-03-17 22:25 DaDa_WLW\Backup\
目录 0 2018-03-17 22:25 DaDa_WLW\Backup1\
文件 44504 2017-09-19 10:05 DaDa_WLW\DaDa_WLW.aps
文件 1981 2017-09-19 10:09 DaDa_WLW\DaDa_WLW.clw
文件 2091 2017-09-18 09:22 DaDa_WLW\DaDa_WLW.cpp
文件 4514 2017-09-19 10:09 DaDa_WLW\DaDa_WLW.dsp
文件 541 2017-09-18 09:22 DaDa_WLW\DaDa_WLW.dsw
文件 1346 2017-09-18 09:22 DaDa_WLW\DaDa_WLW.h
文件 82944 2017-09-19 10:09 DaDa_WLW\DaDa_WLW.ncb
文件 58880 2017-09-19 10:09 DaDa_WLW\DaDa_WLW.opt
文件 942 2017-09-19 10:05 DaDa_WLW\DaDa_WLW.plg
文件 7676 2017-09-19 10:05 DaDa_WLW\DaDa_WLW.rc
文件 8040 2017-09-18 12:56 DaDa_WLW\DaDa_WLW.vcxproj
文件 2152 2017-09-18 12:55 DaDa_WLW\DaDa_WLW.vcxproj.filters
文件 21901 2017-09-19 10:03 DaDa_WLW\DaDa_WLWDlg.cpp
文件 3285 2017-09-19 09:57 DaDa_WLW\DaDa_WLWDlg.h
目录 0 2017-09-26 13:39 DaDa_WLW\Debug\
文件 3321 2017-09-18 11:03 DaDa_WLW\Debug\DaDa_WLW.Build.CppClean.log
文件 3818496 2017-09-19 10:03 DaDa_WLW\Debug\DaDa_WLW.bsc
文件 147563 2017-09-19 10:05 DaDa_WLW\Debug\DaDa_WLW.exe
文件 323068 2017-09-19 10:05 DaDa_WLW\Debug\DaDa_WLW.ilk
文件 3930 2017-09-18 12:56 DaDa_WLW\Debug\DaDa_WLW.log
文件 20352 2017-09-19 09:57 DaDa_WLW\Debug\DaDa_WLW.obj
文件 6874892 2017-09-18 13:11 DaDa_WLW\Debug\DaDa_WLW.pch
文件 517120 2017-09-19 10:05 DaDa_WLW\Debug\DaDa_WLW.pdb
文件 5496 2017-09-19 10:05 DaDa_WLW\Debug\DaDa_WLW.res
............此处省略41个文件信息
- 上一篇:TDC 中文用户指导
- 下一篇:YUV转RGB 的verilog代码
评论
共有 条评论