就这么点东西,应该不会有什么问题
#define u8 unsigned char
sbit TXD = P0^0;
void Delay_9600(void)
{
//移植此处
}
#pragma disable
void SendByte(u8 ucData)
{
u8 i;
TXD = 0;
Delay_9600();
for (i=0; i<8; i++)
{
ucData >>= 1;
TXD = CY;
Delay_9600();
}
TXD = 1;
Delay_9600();
}
void SendString(u8* pStr)
{
while (1)
{
u8 c = *pStr++;
if (c != '\0')
{
SendByte(c);
}
else
{
break;
}
}
} |