]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/debug.c
adjusting test system debug uart reference
[avr-crypto-lib.git] / test_src / debug.c
index 65264795c00526edfa9f467fcafe525e4a7ba318..799ccdf5762b499b65e504725e8b7f943bfbf2a7 100644 (file)
@@ -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(chars){
+ void debug_str(char *s){
        while (*s)
                debug_char(*s++);
  }