You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Logparser/logparser.js
+22-2Lines changed: 22 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -224,6 +224,7 @@ var match = [
224
224
{re: "MCO:BGN:INIT CP=([^,]+)",d: "Core initialization with capabilities <b>$1</b>"},
225
225
{re: "MCO:BGN:INIT (\\w+),CP=([^,]+),VER=(.*)",d: "Core initialization of <b>$1</b>, with capabilities <b>$2</b>, library version <b>$3</b>"},
226
226
{re: "MCO:BGN:INIT (\\w+),CP=([^,]+),REL=(.*),VER=(.*)",d: "Core initialization of <b>$1</b>, with capabilities <b>$2</b>, library version <b>$4</b>, release <b>$3</b>"},
227
+
{re: "MCO:BGN:INIT (\\w+),CP=([^,]+),FQ=(\\d+),REL=(.*),VER=(.*)",d: "Core initialization of <b>$1</b>, with capabilities <b>$2</b>, CPU frequency <b>$4</b> MHz, library version <b>$5</b>, release <b>$4</b>"},
227
228
{re: "MCO:BGN:BFR",d: "Callback before()"},
228
229
{re: "MCO:BGN:STP",d: "Callback setup()"},
229
230
{re: "MCO:BGN:INIT OK,TSP=(.*)",d: "Core initialized, transport status <b>$1</b>, (1=initialized, 0=not initialized, NA=not available)"},
@@ -269,7 +270,6 @@ var match = [
269
270
{re: "TSM:READY",d: "Transition to <b>Ready</b> state"},
270
271
{re: "TSM:FAIL:DIS",d: "Disable transport"},
271
272
{re: "TSM:FAIL:CNT=(\\d+)",d: "Transition to <b>Failure</b> state, consecutive failure counter is <b>$1</b>"},
272
-
273
273
{re: "TSM:FAIL:PDT",d: "Power-down transport"},
274
274
{re: "TSM:FAIL:RE-INIT",d: "Attempt to re-initialize transport"},
275
275
{re: "TSF:CKU:OK,FCTRL",d: "Uplink OK, flood control prevents pinging GW in too short intervals"},
0 commit comments