aesa: make "make clean" also remove output.txt
[jump.git] / aesa / src / global.h
1 #include <string.h>
2
3 #ifndef GLOBAL_H
4 #define GLOBAL_H
5
6 #define NFFT 32
7 #define NUMBER_OF_ANTENNA_ELEMENTS 16
8 #define NUMBER_OF_BEAMS 8
9 #define NUMBER_OF_PULSES 128
10 #define NUMBER_OF_RANGE_BINS 4
11 #define NUMBER_OF_DOPPLER_CHANNELS NUMBER_OF_BEAMS
12 #define NUMBER_OF_ITERATIONS 4  
13
14 #define PRINT_CONSUMER
15
16 #include "stdio.h"
17
18 //structure for holding complex numbers
19 typedef struct complex_number
20 {
21   float real;
22   float imag;
23 } ComplexNumber;
24
25 #endif
26
27