altos/avr: Print newline after dumping ADC values
authorKeith Packard <keithp@keithp.com>
Tue, 11 Oct 2011 23:39:06 +0000 (17:39 -0600)
committerKeith Packard <keithp@keithp.com>
Tue, 11 Oct 2011 23:39:06 +0000 (17:39 -0600)
Cleans up the formating a bit.

Signed-off-by: Keith Packard <keithp@keithp.com>
src/avr/ao_adc_avr.c

index 8c0cade01db2ff4ce9b97955e88195be77314613..4f6f0e60a2c24d4a008b803e2fed42bfdc2d8dba 100644 (file)
@@ -138,6 +138,7 @@ ao_adc_dump(void) __reentrant
        printf("tick: %5u",  packet.tick);
        for (i = 0; i < NUM_ADC; i++)
                printf (" %2d: %5u", i, packet.adc[i]);
+       printf("\n");
 
 
 #ifdef TELEPYRO