From b6b7cc235ce48f62b284d78208b8c0c38d0f2022 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Tue, 23 Jul 2019 06:27:34 -0400 Subject: [PATCH] print formatting --- afsk/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afsk/main.c b/afsk/main.c index cebb700c..eddf09e5 100644 --- a/afsk/main.c +++ b/afsk/main.c @@ -336,7 +336,7 @@ int get_tlm(int tlm[][5]) { { reading[count] = read_sensor_data(sensor[count]); #ifdef DEBUG_LOGGING - printf("Read sensor[%d] % 05.1fV % 05.1fmA % 05.1fmW \n", + printf("Read sensor[%d] % 6.1fV % 6.1fmA % 6.1fmW \n", count, reading[count].voltage, reading[count].current, reading[count].power); #endif }