test_serialcomm.cpp
来自「Small Device C Compiler 面向Inter8051」· C++ 代码 · 共 37 行
CPP
37 行
// Test program for serial communication. Visual C / MFC Version
// Bela Torok / bela.torok@kssg.ch, March 2001
#include <afxwin.h> // Defines the entry point for the console application.
#include <string.h>
#include <stdio.h>
#include "serial.h"
int main(int argc, char* argv[])
{
HANDLE hComPort;
int ComPortNumber = 1;
hComPort = SerialInit("com1", 1200); // 1200 Baud
if( hComPort == 0) {
printf("\n\nError initializing %s!\n", "com1");
exit(1);
}
// write string to RS232
SerialPuts(&hComPort, "\nInitialize\n");
// sleep(5000);
// read string from RS232
printf("\nString received: %s\n", SerialGets(&hComPort));
CloseHandle(hComPort);
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?