mirror of https://github.com/nealey/vail.git
CK tool also measures RTT
This commit is contained in:
parent
0bd790e23a
commit
56486979a8
|
@ -328,7 +328,7 @@ class Vail {
|
||||||
let tx = true
|
let tx = true
|
||||||
for (let duration of durations) {
|
for (let duration of durations) {
|
||||||
duration = Number(duration)
|
duration = Number(duration)
|
||||||
if (tx) {
|
if (tx && (duration > 0)) {
|
||||||
this.buzzer.BuzzDuration(false, adjustedTxTime, duration)
|
this.buzzer.BuzzDuration(false, adjustedTxTime, duration)
|
||||||
this.addRxDuration(duration)
|
this.addRxDuration(duration)
|
||||||
}
|
}
|
||||||
|
@ -397,6 +397,7 @@ class Vail {
|
||||||
s * 3,
|
s * 3,
|
||||||
dah, s, dit, s, dah
|
dah, s, dit, s, dah
|
||||||
]
|
]
|
||||||
|
this.wsSend(Date.now(), 0) // Get round-trip time
|
||||||
this.socket.send(JSON.stringify(msg))
|
this.socket.send(JSON.stringify(msg))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue