void SendData(unsigned char ch)
{
SBUF = ch; //写数据到UART数据寄存器
while(TI == 0);
TI = 0;
}
/*----------------------------
发送字符串
----------------------------*/
void SendString(char *s)
{
while (*s) //检测字符串结束标志
{
SendData(*s++); //发送当前字符
}
}
void wendu1()
{
int xianshi7;
xianshi7=value;
SendString("xianshi7");
}
value值是可变的,怎样让串口发送的是value值,而不是xianshi7. |