开发平台(Platform): (Ex: Win10, Linux, ...)
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
开发平台(Platform): (Ex: Win10, Linux, ...)
Win7
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
VC 2013
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
参考 https://www.teuniz.net/RS-232/
RS232.c, RS232.h
问题(Question):
我要使用RS232连接我的装置
装置是一台Sony的摄像机(Visca协定),可以控制他的底座转向。
目前只能确认有开始使用COM1。
不知道问题是在
1.给指令的方法有问题
2.根本没连接到摄像机
预期的正确结果(Expected Output):
我传送一段指令 例如:81010601010103FF
他会回传我:9041FF9051FF
错误结果(Wrong Output):
输入指令,设备确没有反应。
程式码(Code):(请善用置底文网页, 记得排版,禁止使用图档)
#include <stdlib.h>
#include <stdio.h>
#include <Windows.h>
#include "rs232.h"
int main()
{
int i, n,
cport_nr=0, /* COM1 = 0 */
bdrate=9600; /* baud */
unsigned char buf[4096];
char mode[]={'8','N','1',0};
if(RS232_OpenComport(cport_nr, bdrate, mode))
{
printf("Can not open comport\n");
return(0);
}
char s[100];
scanf("%s", s);
if( s != NULL )
{
RS232_cputs(cport_nr, s);
}
n = RS232_PollComport(cport_nr, buf, 4095);
if(n > 0)
{
buf[n] = 0; /* always put a "null" at the end of a string! *
/
printf("%s", (char *)buf);
}
RS232_CloseComport(cport_nr);
return(0);
}
希望有使用过这library的能指导我,十分谢谢。