mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
include negative snr in rangetest
This commit is contained in:
parent
740e86d664
commit
7cdb1d0f90
1 changed files with 1 additions and 1 deletions
|
|
@ -465,7 +465,7 @@ class UIViewModel @Inject constructor(
|
|||
|
||||
// Filter out of our results any packet that doesn't report SNR. This
|
||||
// is primarily ADMIN_APP.
|
||||
if (proto.rxSnr > 0.0f) {
|
||||
if (proto.rxSnr != 0.0f) {
|
||||
val rxDateTime = dateFormat.format(packet.received_date)
|
||||
val rxFrom = proto.from.toUInt()
|
||||
val senderName = nodesById[proto.from]?.user?.longName ?: ""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue