mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
29 lines
No EOL
737 B
C
29 lines
No EOL
737 B
C
/** Test procedures for VILLASfpga
|
|
*
|
|
* @file
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
* @copyright 2016, Steffen Vogel
|
|
* This file is part of VILLASnode. All Rights Reserved. Proprietary and confidential.
|
|
* Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
*********************************************************************************/
|
|
|
|
#ifndef _TESTS_H_
|
|
#define _TESTS_H_
|
|
|
|
#include "nodes/vfpga.h"
|
|
|
|
int test_intc(struct vfpga *f);
|
|
|
|
int test_xsg(struct vfpga *f, const char *name);
|
|
|
|
int test_fifo(struct vfpga *f);
|
|
|
|
int test_dma(struct vfpga *f);
|
|
|
|
int test_timer(struct vfpga *f);
|
|
|
|
int test_rtds_rtt(struct vfpga *f);
|
|
|
|
int test_rtds_cbuilder(struct vfpga *f);
|
|
|
|
#endif /* _TESTS_H_ */ |