引用: 引用 4 楼 91program 的回复:
sent_string()的原型是什么
引用: 引用 5 楼 tjgcsf 的回复:
引用 4 楼 91program 的回复:
sent_string()的原型是什么
void sent_char_data(char char_data)
{
while(!(rUTRSTAT1 & 0x2));? //Wait until THR is empty.? ?
? ? WrUTXH1(char_data);
}
//-----------------------------------------------------------------------------------------------------------------------
//sent unsigned string form urat part 1;
void sent_string(char *string_point)
{
while(*string_point)
{
sent_char_data(*string_point);
string_point++;
}
}
引用: 引用 6 楼 cfanlwn 的回复:
void sent_string(char *string_point) 入口参数是地址的指针嘛 sent_string("AAA");? "AAA"是字符串嘛 入口参数的意义就不同啊
引用: 引用 8 楼 tjgcsf 的回复:
引用 6 楼 cfanlwn 的回复:
void sent_string(char *string_point) 入口参数是地址的指针嘛 sent_string("AAA");? "AAA"是字符串嘛 入口参数的意义就不同啊
这个在ADS1.2编译就没问题
引用: 引用 8 楼 tjgcsf 的回复:
引用 6 楼 cfanlwn 的回复:
void sent_string(char *string_point) 入口参数是地址的指针嘛 sent_string("AAA");? "AAA"是字符串嘛 入口参数的意义就不同啊
这个在ADS1.2编译就没问题
引用: 引用 11 楼 cfanlwn 的回复:
引用 8 楼 tjgcsf 的回复:
引用 6 楼 cfanlwn 的回复:
void sent_string(char *string_point) 入口参数是地址的指针嘛 sent_string("AAA");? "AAA"是字符串嘛 入口参数的意义就不同啊
这个在ADS1.2编译就没问题
编译没问题,功能可以实现吗?