From dd4b565f8e1ee588337bd9733f05738856adbd06 Mon Sep 17 00:00:00 2001 From: Patrick Servello Date: Sun, 1 Feb 2015 14:06:28 +0000 Subject: [PATCH] Update example.c --- src/example.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/example.c b/src/example.c index 6ff43f6..d8f0f89 100644 --- a/src/example.c +++ b/src/example.c @@ -3,24 +3,14 @@ #include #include "usart_printf/usart_printf.h" -#define FAULT_VCC_SHORT 3 -#define FAULT_GND_SHORT 2 -#define FAULT_OPEN_CONN 1 -#define NO_FAULT 0 - int main(void) { - - usart_initialize(); + usart_initialize(); stdout = &uart_output; _delay_ms(10); - for(;;) { - printf("Hello AVR printf"); _delay_ms(1000); } - - }