mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
adjusted speed chart snr
This commit is contained in:
parent
9182f25fe1
commit
75d40f40c6
2 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue