您的位置 首页 国产IC

模仿串口的完成单片机IO口

用EBOX向我们的电力线调试模块发数据,但是要有一个控制接口,但是EBOX没有提供,所有只好用MCU来做伺服器。一般的单片机都只有一个串口,…

用EBOX向咱们的电力线调试模块发数据,可是要有一个操控接口,可是EBOX没有供给,一切只好用MCU来做伺服器。

一般的单片机都只要一个串口,所以有必要模仿一个出来。

/*

sbit TXD1= P1^4;//define p14 as the analog transmit port

sbit RXD1= P1^2;//define p12 as the analog recieve port

*/

#include “REG52.H”

#define uint unsigned int

#define uchar unsigned char

#include

void WaitTF0(void);

void TIMEINI(void)//counter initial

{

TMOD=0x02;

TH0=0xA0;、//9600 BPS

TL0=TH0;

TR0=1;

TF0=0;

}

void WByte(uchar input)//send function

{

uchar i=8;

TR0=1;

TXD1=0;//begin bit

WaitTF0();

//send the Byte

while(i–)

{

TXD1=input&0x01;//send Byte from low bit to high bit

WaitTF0();

input=input>>1;//right shift

}

TXD1=1;//stop bit

WaitTF0();

TR0=0;//stop the counter

}

uchar RByte()//the recieve function

{

uchar Output=0;

uchar i=8;

while(RXD1);

i=i;

i=i;

i=i;

i=i;

i=i;

i=i;

i=i;

TR0=1;//计数器开端作业

WaitTF0();

while(i–)//接纳8位数据位

{

Output>>=1;

if(RXD1)Output=Output|0x80;//recieve from the high bit to low bit

WaitTF0();

}

TR0=0;

returnOutput;

}

void WaitTF0(void)//check the counter

{

while(!TF0);

TF0=0;

}

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

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

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

微信扫一扫关注我们

返回顶部