X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=test_src%2Fperformance_test.c;h=ad745fc4c96a0b6480bb25fb563500f911040689;hb=751dde0799ad6190c21e8699b2f6e989b01acdd5;hp=9794e5bf46cf49205722cfdd154e7809da75f590;hpb=17332291e15183d71d88ed868275e3cb53917180;p=avr-crypto-lib.git diff --git a/test_src/performance_test.c b/test_src/performance_test.c index 9794e5b..ad745fc 100644 --- a/test_src/performance_test.c +++ b/test_src/performance_test.c @@ -1,6 +1,6 @@ /* performance_test.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 @@ -31,7 +31,7 @@ #include #include #include -#include "uart.h" +#include "cli.h" #include "performance_test.h" @@ -89,24 +89,24 @@ void getOverhead(uint16_t* constoh, uint16_t* intoh){ void print_time_P(PGM_P s, uint64_t t){ char sv[16]; uint8_t c; - uart_putstr_P(PSTR("\r\n")); - uart_putstr_P(s); + cli_putstr_P(PSTR("\r\n")); + cli_putstr_P(s); ultoa((unsigned long)t, sv, 10); for(c=strlen(sv); c<11; ++c){ - uart_putc(' '); + cli_putc(' '); } - uart_putstr(sv); + cli_putstr(sv); } void print_overhead(void){ char str[16]; - uart_putstr_P(PSTR("\r\n\r\n=== benchmark ===")); + cli_putstr_P(PSTR("\r\n\r\n=== benchmark ===")); utoa(const_overhead, str, 10); - uart_putstr_P(PSTR("\r\n\tconst overhead: ")); - uart_putstr(str); + cli_putstr_P(PSTR("\r\n\tconst overhead: ")); + cli_putstr(str); utoa(int_overhead, str, 10); - uart_putstr_P(PSTR("\r\n\tinterrupt overhead: ")); - uart_putstr(str); + cli_putstr_P(PSTR("\r\n\tinterrupt overhead: ")); + cli_putstr(str); }