1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

removed unnecessary includes

This commit is contained in:
Steffen Vogel 2017-03-29 04:22:40 +02:00
parent 563512893e
commit 73f7fb1a2b
6 changed files with 13 additions and 10 deletions

View file

@ -12,8 +12,6 @@
#include <jansson.h>
#include "config.h"
#define HIST_HEIGHT (LOG_WIDTH - 55)
#define HIST_SEQ 17

View file

@ -9,7 +9,8 @@
#include <villas/log.h>
#include "config.h"
/* Some hard-coded configuration for the FPGA benchmarks */
#define BENCH_WARMUP 100
/* Declared in fpga-bench.c */
extern int intc_flags;

View file

@ -14,12 +14,22 @@
#include <villas/fpga/ip.h>
#include <villas/fpga/card.h>
#include <villas/fpga/ips/intc.h>
#include <villas/fpga/ips/timer.h>
#include "config.h"
/* Some hard-coded configuration for the FPGA benchmarks */
#define BENCH_DM 3
// 1 FIFO
// 2 DMA SG
// 3 DMA Simple
#define BENCH_RUNS 3000000
#define BENCH_WARMUP 100
#define BENCH_DM_EXP_MIN 0
#define BENCH_DM_EXP_MAX 20
int fpga_benchmark_datamover(struct fpga_card *c);
int fpga_benchmark_jitter(struct fpga_card *c);
int fpga_benchmark_memcpy(struct fpga_card *c);

View file

@ -21,8 +21,6 @@
#include <villas/fpga/card.h>
#include "config.h"
/* Declarations */
int fpga_benchmarks(int argc, char *argv[], struct fpga_card *c);

View file

@ -17,8 +17,6 @@
#include <villas/sample_io.h>
#include <villas/timing.h>
#include "config.h"
#define CLOCKID CLOCK_REALTIME
enum SIGNAL_TYPE {

View file

@ -19,8 +19,6 @@
#include <villas/pool.h>
#include <villas/kernel/rt.h>
#include "config.h"
struct super_node sn; /** <The global configuration */
static struct node *node;