C语言串口通信-源代码.doc

C语言串口通信-源代码.doc

ID:52564121

大小:54.00 KB

页数:13页

时间:2020-03-28

C语言串口通信-源代码.doc_第1页
C语言串口通信-源代码.doc_第2页
C语言串口通信-源代码.doc_第3页
C语言串口通信-源代码.doc_第4页
C语言串口通信-源代码.doc_第5页
资源描述:

《C语言串口通信-源代码.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、#include#include#include#include#defineCOM232 0x2f8#defineCOMINT 0x0b#defineMaxBufLen     500#definePort8259      0x20#defineEofInt       0x20staticint comportaddr;staticcharintvectnum;staticunsignedcharmaskb;staticunsignedcharBuffer[MaxBufLen];staticint Char

2、sInBuf,CircIn,CircOut;staticvoid(interruptfar*OldAsyncInt)();staticvoidinterruptfarAsyncInt(void);voidInit_COM(intComPortAddr,unsignedcharIntVectNum,intBaud,      unsignedcharData,unsignedcharStop,unsignedcharParity){ unsignedcharHigh,Low; intf; comportaddr=ComPortAddr; intvectnum=IntVectNum; 

3、CharsInBuf=0;CircIn=0;CircOut=0;  f=(Baud/100); f=1152/f;High=f/256; Low=f-High*256; outp(ComPortAddr+3,0x80); outp(ComPortAddr,Low); outp(ComPortAddr+1,High);  Data=(Data-5)

4、((Stop-1)*4); if(Parity==2)Data=Data

5、0x18; elseif(Parity==1)Data=Data

6、0x8; outp(ComPortAddr+3,Data);  outp(ComPortAddr+

7、4,0x0a);  outp(ComPortAddr+1,0x01);  disable(); OldAsyncInt=getvect(IntVectNum); setvect(IntVectNum,AsyncInt); enable();  maskb=inp(Port8259+1); if(IntVectNum==0x0c)outp(Port8259+1,maskb&0xef); elseoutp(Port8259+1,maskb&0xf7);              }staticvoidinterruptfarAsyncInt(void){ disable(); if(C

8、harsInBuf

9、intFlag; Flag=-1; if(CharsInBuf>0) {  (*Char)=Buffer[CircOut];  if(CircOut

10、 Init_COM(COM232,COMINT,1200,8,1,0); while(1) {  if(kbhit())    {if((InChar=getch())==27)break;     elsewhile(SendChar(InChar));    }  if(GetCharInBuf(&InChar)==0)      printf("%c",InChar); }Restore();} 接收程序:  #include  #include<

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

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

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