X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fdebug.c;h=799ccdf5762b499b65e504725e8b7f943bfbf2a7;hp=65264795c00526edfa9f467fcafe525e4a7ba318;hb=deca11a7e7be5605c387aa2cd577e22925854ff8;hpb=aa060d30f8600acb9cc5bcf9fa3d97a2fbe5ccda diff --git a/test_src/debug.c b/test_src/debug.c index 6526479..799ccdf 100644 --- a/test_src/debug.c +++ b/test_src/debug.c @@ -24,7 +24,7 @@ #include "config.h" #if DEBUG_METHOD == uart - #include "uart_i.h" + #include "uart.h" #else #error "Your DEBUG methode is not suported!" #endif @@ -47,7 +47,7 @@ uart0_putc(c); } - void debug_str(char* s){ + void debug_str(char *s){ while (*s) debug_char(*s++); }