From 1b1102c0517daf7c0e3441af63ffe149dbc61847 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 21 Aug 2023 09:14:37 -0400 Subject: [PATCH] Update telem.c added back bus voltage current for V1.2 Sims --- telem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telem.c b/telem.c index 198ff892..31dd76d6 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("Bus | % 4.2f V % 5.0f mA \n\n", voltage[map[BUS]], current[map[BUS]]); + printf("Bus | % 4.2f V % 5.0f mA \n\n", voltage[map[BUS]], current[map[BUS]]); fclose(file1); return 0;