From 5ad71d87f5fea95515aab61d680929dae152f4ba Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 14 Oct 2024 17:17:17 -0400 Subject: [PATCH] Update telem.c changed BUS to BAT2 --- telem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telem.c b/telem.c index ea4579eb..7afceef2 100644 --- a/telem.c +++ b/telem.c @@ -79,7 +79,7 @@ int main(int argc, char *argv[]) { printf("-Y | % 4.2f V % 5.0f mA \n", voltage[map[MINUS_Y]], current[map[MINUS_Y]]); printf("-Z | % 4.2f V % 5.0f mA \n", voltage[map[MINUS_Z]], current[map[MINUS_Z]]); printf("Bat | % 4.2f V % 5.0f mA \n", voltage[map[BAT]], current[map[BAT]]); - printf("Bat2 | % 4.2f V % 5.0f mA \n\n", voltage[map[BUS]], current[map[BUS]]); + printf("Bat2 | % 4.2f V % 5.0f mA \n\n", voltage[map[BAT2]], current[map[BAT2]]); fclose(file1); return 0;