This commit is contained in:
lnk
2026-03-04 19:15:32 +08:00
parent 50dd5c8a3e
commit d5916f5559
4 changed files with 10 additions and 4 deletions

View File

@@ -2361,8 +2361,11 @@ int json_block_create_data(char monid_char[], char* mms_str, double v, int flick
if (pdata != NULL)
{
pdata->mms_str_map.insert(QString::fromAscii(mms_str), v);
if (strstr(mms_str, "MMXU2$MX$PhV"))
if (strstr(mms_str, "MMXU2$MX$PhV")){
pdata->data_have_statistic = 1;
printf("---------- json_block_create_data: mp_id= %s ,mms_str=%s value=%fkV----------\n", monid_char, mms_str, v);
}
}
return TRUE;
}