|
@@ -2457,7 +2457,7 @@ void DisplayRunInfo(uint32_t FunDebugCode000)
|
|
|
} //按键功能码>90000 ----结束 if(FunDebugCode>90000)
|
|
|
else
|
|
|
{ //功能码范围在00--90000之间--开始
|
|
|
- memset(bufText01Password, ' ', sizeof(bufText01Password));
|
|
|
+ memset(bufText01Password, 0, sizeof(bufText01Password));
|
|
|
//sprintf((char*)bufText01Password,"系统运行中.tick=%08X,%08d.\r\n",tick001,tick001);
|
|
|
if (FunDebugCode000 == 0)
|
|
|
{
|
|
@@ -2503,7 +2503,7 @@ void DisplayRunInfo(uint32_t FunDebugCode000)
|
|
|
break;
|
|
|
|
|
|
default:
|
|
|
- Len001RunInfo = sprintf((char *)bufText01Password, "系统运行中.tick=%08X,%08d.未定义code=%5d.CPU=%d.\r\n", tick001, tick001 / 1000, FunDebugCode000, cntUsage);
|
|
|
+ Len001RunInfo = sprintf((char *)bufText01Password, " code=%5d\r\n",FunDebugCode000);
|
|
|
break;
|
|
|
}
|
|
|
|