STM32F4串口打印 while函数出错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STM32F4串口打印 while函数出错相关的知识,希望对你有一定的参考价值。
总结:写while函数等类型的循环要添加“{ }”,不然不知道会出什么错误。
原函数:
void division_func(void)
{
char *p=NULL;
int i =0;
//如USART1接收到的字符串:2013-12-14
//以‘-’分割字符串,现在分割出的第一个字符串为:2013
p = strtok((char *)g_usart1_recv_buf,"-");
printf("分割:%d %s\r\n", i++, p);
//继续分割
while((p=strtok(NULL,"-")))
printf("分割:%d %s\r\n", i++, p);
}
运行结果:有误
修改后:
void division_func(void)
{
char *p=NULL;
int i =0;
//如USART1接收到的字符串:2013-12-14
//以‘-’分割字符串,现在分割出的第一个字符串为:2013
p = strtok((char *)g_usart1_recv_buf,"-");
printf("分割:%d %s\r\n", i++, p);
//继续分割
while((p=strtok(NULL,"-")))
{
printf("分割:%d %s\r\n", i++, p);
}
}
运行结果:正常
以上是关于STM32F4串口打印 while函数出错的主要内容,如果未能解决你的问题,请参考以下文章