⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_serialcomm.cpp

📁 Small Device C Compiler 面向Inter8051
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -