fix decimal in snr value in rangetest.csv

master
sp9unb 2023-05-30 00:15:51 +02:00
parent 72f02b0deb
commit a1e6eeb4ee
1 changed files with 1 additions and 1 deletions

View File

@ -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