您的位置 首页 设计

51单片机串口通讯软件程序集

串口通信的单片机程序beepbitp3.7;蜂鸣器定义org00hjmpmainorg23h;串行中断入口地址jmpcom_int;串行中断服务程序;**********…

串口通讯单片机程序

beepbit p3.7;蜂鸣器界说

org 00h

jmp main

org 23h ;串行中止进口地址

jmp com_int ;串行中止服务程序

;***********主程序开端*******************

org 30h

main:mov sp,#30h;设置仓库

lcall rest ;初始化

lcall comm ;串口初始化

jmp $;原地等候

;************* 初始化 *********************

rest:mov p0,#00h ;制止数码管显现

mov p2,#255

clrbeep;制止蜂鸣器

mov p1,#255;制止LED显现

RET;回来

; **************串口初始化 *****************

;设置串行口作业方法1,定时器1作为波特率发生器

;波特率设置为 2400;

comm: mov tmod,#20h;设置定时器T1作业方法2

mov tl1,#0f3h ;定时器计数初值,波特率 2400

mov th1,#0f3h;定时器重装值

setb ea ;答应总的中止

setb es ;答应串行中止

mov pcon,#00h;波特率不倍增

mov scon,#50h;设置串口作业方法1,REN = 1 答应接纳

setb tr1 ;定时器开端作业

ret ;回来

;***************串口中止服务程序 ***********

;假如接纳0FF表明上位机需求联机信号,单片机发送 0FFH作为

;应对信号,假如接纳到 数字 1~ n,表明相应的功用;

;这儿,假如收到 1 ,则单片机向计算机发送字符H;

;假如收到 2 ,则单片机向计算机发送字符e;

;假如收到其他的数据,则发送J;

com_int:clr es;制止串行中止

clr ri;铲除接纳标志位

mov a,sbuf ;从缓冲区取出数据

mov p1,a

mov dptr,#tab

cjne a,#0ffh,in_1;查看数据

mov sbuf,#255;收到联机信号,发送联机信号

jnb ti,$;等候发送结束

clr ti;铲除发送标志

setb es ;答应串行中止

reti;中止回来

in_1: cjne a,#1H, in_2 ;假如收到1

movc a,@a+dptr

mov sbuf,a ;发送 h

jnb ti,$;等候发送结束

clrti ;铲除发送中止标志

setb es ;答应串行中止

reti;中止回来

in_2: cjne a,#2,in_3 ;接纳到2

movc a,@a+dptr

mov sbuf,a ;发送 e

jnb ti,$;等候发送结束

clrti ;铲除发送中止

setb es ;答应串行中止

reti;中止回来

in_3: mov a,#03h

movc a,@a+dptr

mov sbuf,a ;发送 j

jnb ti,$;等候发送结束

clr ti;铲除发送中止标志

setb es ;答应串行中止

reti;回来

tab:db 2,h,e,j

end

51单片机串口调试程序一例

/*界说为中止方法串口处理*/

#define INTERSENDSTR

/*不为8032系列芯片 */

//#define CHIP_8032

#include

#include

#include

#include “err.h”

#ifdef INTERSENDSTR

unsigned char xdata sSendComBuf[256],sRecComBuf[256];

unsigned char data bOut,bIn,bSout,bSin;

#else

#define DEFSENDCHAR TI=0;SBUF=ACC;while(!TI);TI=0;

#endif

//bps设置 9600便是 PSetBps(96)(11.0592Mhz)

unsigned charPSetBps(unsigned int bps) SMALL

{

unsigned int t1;

unsigned char t2;

#ifdef INTERSENDSTR

/*假如运用中止方法发送数据,有必要等候发送数据结束才干替换波特率 */

while(bSin!=bSout)

{

;

}

ES=0;

#endif

#ifdef CHIP_8032

if(3456%bps)

{

return ERR_SET_BPS;

}

t1=3456/bps;

t1–;t1=~t1;

RCAP2H=t1/256;RCAP2L=t1;

T2MOD=0x00;

/*运用定时器2做波特率发生器 */

T2CON=0x34;/*TF2=0;EXF2=0;RCLK=1;TCLK=1;EXEN2=0;TR2=1;C/T2=0;CP/RL2=0

*/

#else

t1=576/bps;

if((576%bps)||((t1==0))||(t1>=2*256))

{

return ERR_SET_BPS;

}

if(t1>256)

{

PCON=00;

t2=256-(288/bps);

}

else

{

PCON=0x80;

t2=256-t1;

}

TH1=t2;TL1=t2;

TR1=1;

#endif

/*形式3*/

SM0=0;

RI=0;TI=0;

REN=1;

SM1=1;

SM2=1;

#ifdef INTERSENDSTR

bOut=bIn;

bSout=bSin;

ES=1;

#endif

return OK;

}

void PSendChar(unsigned char ch) SMALL

{

#ifdef INTERSENDSTR

unsigned char tch;

tch=bSin+1;

while(tch==bSout)

{

;

}

sSendComBuf[bSin]=ch;

ES=0;

if((bSout==bSin))

{

SBUF=sSendComBuf[bSin];

bSin++;

}

else

{

bSin++;

}

ES=1;

#else

ACC=ch;

DEFSENDCHAR;

#endif

}

unsigned char PGetChar() SMALL

{

unsigned char ch;

#ifdefINTERSENDSTR

ch=sRecComBuf[bOut];

bOut++;

return ch;

#else

ch=SBUF;

RI=0;

#endif

}

bit PCharInCom() SMALL

{

#ifdefINTERSENDSTR

if(bIn!=bOut)

{

return 1;

}

return 0;

#else

return RI;

#endif

}

void PSendString(unsigned char *st) SMALL

{

while(*st)

{

PSendChar(*st);

st++;

}

}

void PSendArray(unsigned char*st,unsigned intlen) SMALL

{

unsigned int ii;

for(ii=0;ii

{

PSendChar(st[ii]);

}

}

#ifdefINTERSENDSTR

void PSerialInt() interrupt 4

{

if(RI)

{

sRecComBuf[bIn]=SBUF;

bIn++;

RI=0;

}

if(TI)

{

TI=0;

if(bSout!=bSin)

{

bSout++;

}

if(bSout!=bSin)

{

SBUF=sSendComBuf[bSout];

}

}

}

#endif

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/ziliao/sheji/266968.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部