]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - test_src/main-hmac-sha1-test.c
moving from uart to cli
[avr-crypto-lib.git] / test_src / main-hmac-sha1-test.c
index 74d331e4b6be8a970142709c2a888433319fd729..f84cfdf95cabfb76c22ab1088fc6f0c118afb704 100644 (file)
@@ -88,13 +88,13 @@ cmdlist_entry_t cmdlist[] PROGMEM = {
 
 int main (void){
        DEBUG_INIT();
-       uart_putstr("\r\n");
+       
        cli_rx = uart_getc;
        cli_tx = uart_putc;             
        for(;;){
-               uart_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
-               uart_putstr(algo_name);
-               uart_putstr_P(PSTR(")\r\nloaded and running\r\n"));
+               cli_putstr_P(PSTR("\r\n\r\nCrypto-VS ("));
+               cli_putstr(algo_name);
+               cli_putstr_P(PSTR(")\r\nloaded and running\r\n"));
                cmd_interface(cmdlist);
        }
 }