forked from mirror/meshtastic-android
fix decimal in snr value in rangetest.csv
parent
72f02b0deb
commit
a1e6eeb4ee
|
@ -607,7 +607,7 @@ class UIViewModel @Inject constructor(
|
|||
val rxLat = rxPos?.latitude ?: ""
|
||||
val rxLong = rxPos?.longitude ?: ""
|
||||
val rxAlt = rxPos?.altitude ?: ""
|
||||
val rxSnr = "%f".format(proto.rxSnr)
|
||||
val rxSnr = "%f".format(proto.rxSnr, Locale.US)
|
||||
|
||||
// Calculate the distance if both positions are valid
|
||||
|
||||
|
|
Loading…
Reference in New Issue