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 )