adjusted speed chart snr

This commit is contained in:
DJ2LS 2023-02-15 14:09:51 +01:00
parent 9182f25fe1
commit 75d40f40c6
2 changed files with 5 additions and 1 deletions

View file

@ -1693,6 +1693,10 @@ ipcRenderer.on("action-update-tnc-state", (event, arg) => {
var speedDataSnr = [];
for (var i = 0; i < speed_listSize; i++) {
let snr = NaN;
if(arg.speed_list[i].snr !== 0){
snr = arg.speed_list[i].snr;
}
speedDataSnr.push(arg.speed_list[i].snr);
}

View file

@ -11,7 +11,7 @@ Not nice, suggestions are appreciated :-)
import subprocess
from enum import Enum
VERSION = "0.7.3-alpha.2"
VERSION = "0.7.4-alpha.1-exp"
ENABLE_EXPLORER = False
ENABLE_STATS = False