解决warning: #181-D: argument is incompatible with corresponding format string conversion警告

  • Post author:
  • Post category:其他


uint8_t NetRSSI=0;

uint8_t NetBer=0;

uint8_t failtime=0;

sscanf(&USART_RX_BUF[0],”%*s%u,%u”,&NetRSSI,&NetBer);//此句警告 warning:  #181-D: argument is incompatible with corresponding format string conversion。意思是NetRSSI,NetBer这两个变量的类型与sscanf中的类型不符。

当然可以忽略,因为如果USART_RX_BUF中的字符确实在0-255以内可以得到正确的结果,但是。。。。此处不能忽略。

因为有

uint8_t failtime=0;

这个变量类型定义。

我之前忽略后,发现scanf赋值给上述变量的值并没有转换成unsigned char,而是将int后面的3个字节覆盖掉了failtime的内存位置,导致只要一执行上述的ssanf语句后failtime立即被清零。

修改后的为

uint32_t NetRSSI=0;

uint32_t NetBer=0;

uint8_t failtime=0;

编译后既不警告,运行时也不会出错了。

在此提醒,不可轻易忽略警告,特别是涉及到不同长度的变量转换时。

转载于:https://www.cnblogs.com/csaaa/p/6635964.html