From 1a7715938eb0df55f6f016c61f70f531e0c906ce Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Fri, 19 Apr 2024 15:12:28 -0400 Subject: [PATCH] Update main.c voltage and current --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index f8c145ec..bbfa0c75 100644 --- a/main.c +++ b/main.c @@ -1037,7 +1037,7 @@ void get_tlm(void) { } if (mode == AFSK) { - sprintf(tlm_str, "%4.2f V %5.1f mA ", batteryVoltage, batteryVoltage); + sprintf(tlm_str, "%4.2f V %5.1f mA ", batteryVoltage, batteryCurrent); strcat(str, tlm_str); }