avr-crypto-lib/test_src/main-test-common.c

57 lines
1.6 KiB
C
Raw Permalink Normal View History

2012-03-28 04:09:17 +00:00
/* main-test-common.c */
/*
This file is part of the ARM-Crypto-Lib.
2015-02-06 02:43:31 +00:00
Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org)
2012-03-28 04:09:17 +00:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "main-test-common.h"
2012-08-25 17:28:10 +00:00
static
int std_stream_put(char c, FILE *f){
2012-08-25 17:28:10 +00:00
static uint8_t did_r = 0;
if(!did_r && c == '\n'){
uart0_putc('\r');
}
uart0_putc((char)c);
did_r = (c == '\r');
return 0;
}
static
int std_stream_get(FILE *f){
2012-08-25 17:28:10 +00:00
return (int)uart0_getc();
}
2012-03-28 04:09:17 +00:00
void main_setup(void){
DEBUG_INIT();
cli_rx = (cli_rx_fpt)uart0_getc;
cli_tx = (cli_tx_fpt)uart0_putc;
2012-08-25 17:28:10 +00:00
fdevopen(std_stream_put, std_stream_get);
2012-03-28 04:09:17 +00:00
}
void welcome_msg(const char *algoname){
2012-08-25 17:28:10 +00:00
/*
cli_putstr_P(PSTR("\r\n\r\nAVR-Crypto-Lib VS ("));
2012-03-28 04:09:17 +00:00
cli_putstr(algoname);
cli_putstr_P(PSTR("; "));
cli_putstr(__DATE__);
cli_putc(' ');
cli_putstr(__TIME__);
cli_putstr_P(PSTR(")\r\nloaded and running\r\n"));
2012-08-25 17:28:10 +00:00
*/
2012-09-18 04:07:04 +00:00
printf_P(PSTR("\n\nAVR-Crypto-Lib VS (%s; %s %s)\nloaded and running\n"), algoname, __DATE__, __TIME__);
2012-03-28 04:09:17 +00:00
}