欢迎来到天天文库
浏览记录
ID:50824039
大小:41.50 KB
页数:13页
时间:2020-03-15
《c语言串口通信范例.doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、一个c语言的串口通信程序范例(2010-04-0215:19:47)转载标签:c语言串口通信通信程序it分类:技术笔记最近接触一个项目,用HL-C1C激光位移传感器+易控组态软件完成生产线高度跳变检测,好久没有接触cc#,一些资料,找来做个记录,也许大家用的着#include#include#include#include#defineCOM232 0x2f8#defineCOMINT 0x0b#defineMaxBufLen 500#definePort8259
2、 0x20#defineEofInt 0x20staticint comportaddr;staticcharintvectnum;staticunsignedcharmaskb;staticunsignedcharBuffer[MaxBufLen];staticint CharsInBuf,CircIn,CircOut;staticvoid(interruptfar*OldAsyncInt)();staticvoidinterruptfarAsyncInt(void);voidInit_COM(intComPortAddr,
3、unsignedcharIntVectNum,intBaud, unsignedcharData,unsignedcharStop,unsignedcharParity){ unsignedcharHigh,Low; intf; comportaddr=ComPortAddr; intvectnum=IntVectNum; CharsInBuf=0;CircIn=0;CircOut=0; f=(Baud/100); f=1152/f;High=f/256; Low=f-High*256; outp(ComPortAddr+3,0x8
4、0); outp(ComPortAddr,Low); outp(ComPortAddr+1,High); Data=(Data-5)
5、((Stop-1)*4); if(Parity==2)Data=Data
6、0x18; elseif(Parity==1)Data=Data
7、0x8; outp(ComPortAddr+3,Data); outp(ComPortAddr+4,0x0a); outp(ComPortAddr+1,0x01); disable(); OldAsyncInt=getvect(IntVectNum); setvect
8、(IntVectNum,AsyncInt); enable(); maskb=inp(Port8259+1); if(IntVectNum==0x0c)outp(Port8259+1,maskb&0xef); elseoutp(Port8259+1,maskb&0xf7); }staticvoidinterruptfarAsyncInt(void){ disable(); if(CharsInBuf9、fLen-1)CircIn++; elseCircIn=0; if(CircIn==CircOut)CircOut++; elseCharsInBuf++; enable(); outp(Port8259,EofInt);}voidRestore(void){ setvect(intvectnum,OldAsyncInt); outp(Port8259+1,maskb); }intGetCharInBuf(unsignedchar*Char){ intFlag; Flag=-1; if(CharsInBuf>0) { (*Char)=Buff10、er[CircOut]; if(CircOut11、1,0); while(1) { if(kbhit()) {if((InChar=getch())==27)break; elsewh
9、fLen-1)CircIn++; elseCircIn=0; if(CircIn==CircOut)CircOut++; elseCharsInBuf++; enable(); outp(Port8259,EofInt);}voidRestore(void){ setvect(intvectnum,OldAsyncInt); outp(Port8259+1,maskb); }intGetCharInBuf(unsignedchar*Char){ intFlag; Flag=-1; if(CharsInBuf>0) { (*Char)=Buff
10、er[CircOut]; if(CircOut11、1,0); while(1) { if(kbhit()) {if((InChar=getch())==27)break; elsewh
11、1,0); while(1) { if(kbhit()) {if((InChar=getch())==27)break; elsewh
此文档下载收益归作者所有