]> 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 3b5fee4c74c71a3b5e873acd21b013841245f491..799ccdf5762b499b65e504725e8b7f943bfbf2a7 100644 (file)
@@ -1,6 +1,6 @@
 /* debug.c */
 /*
-    This file is part of the Crypto-avr-lib/microcrypt-lib.
+    This file is part of the AVR-Crypto-Lib.
     Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
 
     This program is free software: you can redistribute it and/or modify
 ****************************/
 #include "config.h"
 
-#if DEBUG == uart
+#if DEBUG_METHOD == uart
  #include "uart.h"
 #else
   #error "Your DEBUG methode is not suported!"
 #endif
 
-#ifdef DEBUG
+#ifdef DEBUG_METHOD
  void debug_init(void){
- #if DBUG==uart
-  uart_init();
+ #if DEBUG_METHOD==uart
+  uart0_init();
  #else
   #error "Your DEBUG methode is not suported!"
  #endif
  }
+
  void debug_char(char c){
        static char initialised = 0;
        if (!initialised){
-               uart_init();
+               uart0_init();
                initialised=1;
-       }       
-       uart_putc(c);
+       }
+       uart0_putc(c);
  }
- void debug_str(chars){
+
+ void debug_str(char *s){
        while (*s)
                debug_char(*s++);
  }
+
 
 
  void debug_byte(char b){