X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=test_src%2Fdebug.c;h=799ccdf5762b499b65e504725e8b7f943bfbf2a7;hp=a9a52921792dda36ac11aec1176a7d9c5897c883;hb=deca11a7e7be5605c387aa2cd577e22925854ff8;hpb=17332291e15183d71d88ed868275e3cb53917180 diff --git a/test_src/debug.c b/test_src/debug.c index a9a5292..799ccdf 100644 --- a/test_src/debug.c +++ b/test_src/debug.c @@ -1,6 +1,6 @@ /* debug.c */ /* - This file is part of the This file is part of the AVR-Crypto-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 @@ -23,35 +23,35 @@ ****************************/ #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(char* s){ + + void debug_str(char *s){ while (*s) debug_char(*s++); } - + void debug_byte(char b){