From d8e154b09d98b99041f385cb2ed85033c4724301 Mon Sep 17 00:00:00 2001 From: Matt Date: Sun, 19 Sep 2021 09:45:09 -0500 Subject: [PATCH] Remove "problem" with literal operator. --- src/TTGO_T-Beam_LoRa_APRS.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TTGO_T-Beam_LoRa_APRS.ino b/src/TTGO_T-Beam_LoRa_APRS.ino index a6d9bd8..0829f41 100644 --- a/src/TTGO_T-Beam_LoRa_APRS.ino +++ b/src/TTGO_T-Beam_LoRa_APRS.ino @@ -290,7 +290,7 @@ void prepareAPRSFrame(){ outString += "H"; if (showAltitude){ - Talt = gps.altitude.meters() * 3.28d; + Talt = gps.altitude.meters() * 3.28; Altx = Talt; outString += "/A="; for (i = 0; i < (6 - Altx.length()); ++i){