代码拉取完成,页面将自动刷新
#include <windows.h>
#include <stdio.h>
#include "pcomm.h"
int main() {
int port = 2;
int ret, len;
typedef int (* OPEN_CLOSE)(int port);
typedef int (*func)(int port, int baund, int mode);
typedef int (*func1)(int port, char *buf, int len);
HMODULE Hint = NULL;//创建一个句柄h
Hint = LoadLibrary("pcomm.dll");
if (Hint == NULL) { //检测是否加载dll成功
printf("加载PCOMM.dll动态库失败\n");
return -1;
}
OPEN_CLOSE SIO_OPEN = (OPEN_CLOSE)GetProcAddress(Hint, "sio_open");
OPEN_CLOSE SIO_CLOSE = (OPEN_CLOSE)GetProcAddress(Hint, "sio_close");
func SIO_IOCTL = (func)GetProcAddress(Hint, "sio_ioctl");
func1 SIO_WRITE = (func1)GetProcAddress(Hint, "sio_write");
ret = SIO_OPEN(port);
if (ret != SIO_OK) {
printf("打开串口%d失败!\n", port);
} else {
ret = SIO_IOCTL(port, B9600, BIT_8 | STOP_1 | P_NONE);
if (ret != SIO_OK)
printf("串口2设置失败!\n");
else {
len = SIO_WRITE(1, "ABCDE", 5);
if (len < 0 )
printf("发送字符串失败!\n");
else
printf("字符串发送成功!\n");
}
}
ret = SIO_CLOSE(port);
if (ret != SIO_OK)
printf("串口关闭失败!\n");
else
printf("串口关闭成功!\n");
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。