void putc(unsigned char c)
{
while( ! (UTRSTAT0 & TXD0READY) );
UTXH0 = c;
}
以上的是我有串口输出函数。
当C为一个字符如“a”时,可以正常输出,但当C为一个int ,float等类型时(此时putc的形参类型也做对应修改),要不输不出来,要不输出为乱码。
请着呢下这是什么原因造成的呢?该如何解决啊?
共6条
1/1 1 跳转至页
4楼
你要知道这是嵌入式中的putc,它和PC中标准C库中的putc函数有差别的,它只能接收8bit的数据,因为其发送寄存器UTXH0 是8位的,而你一个int是32位,float则是32或者64位的,当然在参数传递的时候就丢失了一部分信息了,所以你能够收到数据,但始终不对,即使你把putc的参数类型改了也不正确,(本质一样,治标不治本),要打印int或者float型数据其正确的做法是自己实现一个转换函数,先转换好了,再调用putc,下面我以前写过的一个转换函数:
void uint32toASIC(uint32 Value,uint8 *Str)
{
uint32 temp1 = Value/10000;
uint32 temp2 = Value%10000;
*Str++ = (uint8)temp1%10 + '0';//??
temp1 = temp2/1000;
temp2 = temp2%1000;
*Str++ = (uint8)temp1%10 + '0';//??
temp1 = temp2/100;
temp2 = temp2%100;
*Str++ = (uint8)temp1%10 + '0';//??
temp1 = temp2/10;
temp2 = temp2%10;
*Str++ = (uint8)temp1%10 + '0';//??
*Str++ = (uint8)temp2 + '0'; //??
*Str++ = '\n';//end the ASIC strings;
*Str = '\0';
}
这里转换为ASICII码是因为串口精灵只能显示ASICII码(非16进制显示时)
void uint32toASIC(uint32 Value,uint8 *Str)
{
uint32 temp1 = Value/10000;
uint32 temp2 = Value%10000;
*Str++ = (uint8)temp1%10 + '0';//??
temp1 = temp2/1000;
temp2 = temp2%1000;
*Str++ = (uint8)temp1%10 + '0';//??
temp1 = temp2/100;
temp2 = temp2%100;
*Str++ = (uint8)temp1%10 + '0';//??
temp1 = temp2/10;
temp2 = temp2%10;
*Str++ = (uint8)temp1%10 + '0';//??
*Str++ = (uint8)temp2 + '0'; //??
*Str++ = '\n';//end the ASIC strings;
*Str = '\0';
}
这里转换为ASICII码是因为串口精灵只能显示ASICII码(非16进制显示时)
共6条
1/1 1 跳转至页
回复
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |