c语言串口通信范例.doc

c语言串口通信范例.doc

ID:50824039

大小:41.50 KB

页数:13页

时间:2020-03-15

c语言串口通信范例.doc_第1页
c语言串口通信范例.doc_第2页
c语言串口通信范例.doc_第3页
c语言串口通信范例.doc_第4页
c语言串口通信范例.doc_第5页
资源描述:

《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(CharsInBuf

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(CircOut

11、1,0); while(1) {  if(kbhit())    {if((InChar=getch())==27)break;     elsewh

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。