Tweak HTML

This commit is contained in:
cnlohr
2024-07-09 03:36:03 -07:00
parent 6c7adbdcc2
commit 21e6aab95c
+2 -2
View File
@@ -3,7 +3,7 @@ const filter = { vendorId : 0x1209, productId : 0xd035 };
let dev = null; let dev = null;
let loopAbort = false; let loopAbort = false;
const IQHistoryLen = 2048; const IQHistoryLen = 4096;
var IQHistoryArray = new Uint32Array(IQHistoryLen); var IQHistoryArray = new Uint32Array(IQHistoryLen);
var IQHistoryHead = 0|0; var IQHistoryHead = 0|0;
var lastIntensity = 1.0; var lastIntensity = 1.0;
@@ -189,7 +189,7 @@ async function sendLoop()
document.getElementById( "StatusPerf" ).innerHTML = document.getElementById( "StatusPerf" ).innerHTML =
(kBsecAvg).toFixed(2) + " kBytes/s (Split between send and receive)<br>" + (kBsecAvg).toFixed(2) + " kBytes/s (Split between send and receive)<br>" +
(xActionSecAvg).toFixed(2) + "transactions/sec<br>" + (xActionSecAvg).toFixed(2) + "transactions/sec<br>" +
"Good Count: " + goodCount + "<BR>Bad Count: " + badCount; "Count: " + goodCount + " / " + badCount;
lastTime = thisTime; lastTime = thisTime;
} }
else if( frameNo % updateStatsPerfPer == 2 ) else if( frameNo % updateStatsPerfPer == 2 )