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

39 lines
1.1 KiB
C
Raw Normal View History

2012-03-28 04:09:17 +00:00
/* main-test-common.h */
/*
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/>.
*/
#ifndef MAINTESTCOMMON_H_
#define MAINTESTCOMMON_H_
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
2012-08-25 17:28:10 +00:00
#include <stdio.h>
2012-03-28 04:09:17 +00:00
#include "config.h"
#include "cli.h"
#include "dump.h"
2014-12-30 13:11:19 +00:00
#include "uart.h"
2012-03-28 04:09:17 +00:00
#include "debug.h"
#include <avr/pgmspace.h>
void main_setup(void);
void welcome_msg(const char *algoname);
2012-03-28 04:09:17 +00:00
#endif /* MAINTESTCOMMON_H_ */