From 21e6aab95cd6fd583abb3d8b654ce4cf3a032841 Mon Sep 17 00:00:00 2001 From: cnlohr Date: Tue, 9 Jul 2024 03:36:03 -0700 Subject: [PATCH] Tweak HTML --- ch32v/lib/webhidcontrol.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch32v/lib/webhidcontrol.js b/ch32v/lib/webhidcontrol.js index 5c3d5e8..799000c 100644 --- a/ch32v/lib/webhidcontrol.js +++ b/ch32v/lib/webhidcontrol.js @@ -3,7 +3,7 @@ const filter = { vendorId : 0x1209, productId : 0xd035 }; let dev = null; let loopAbort = false; -const IQHistoryLen = 2048; +const IQHistoryLen = 4096; var IQHistoryArray = new Uint32Array(IQHistoryLen); var IQHistoryHead = 0|0; var lastIntensity = 1.0; @@ -189,7 +189,7 @@ async function sendLoop() document.getElementById( "StatusPerf" ).innerHTML = (kBsecAvg).toFixed(2) + " kBytes/s (Split between send and receive)
" + (xActionSecAvg).toFixed(2) + "transactions/sec
" + - "Good Count: " + goodCount + "
Bad Count: " + badCount; + "Count: " + goodCount + " / " + badCount; lastTime = thisTime; } else if( frameNo % updateStatsPerfPer == 2 )