aesa: make "make clean" also remove output.txt
[jump.git] / aesa / src / Weight_Generator.h
1 #ifndef WEIGHT_GENERATOR_H
2 #define WEIGHT_GENERATOR_H
3
4 #include <dol.h>
5 #include "global.h"
6
7 #define PORT_OUT "out"
8
9 typedef struct _local_states
10 {
11   ComplexNumber Weights[NUMBER_OF_BEAMS][NUMBER_OF_ANTENNA_ELEMENTS];
12   //int weight_counter;
13         int pulse_counter;
14         int n_firings;
15
16         int excount;
17         
18
19         
20 } Weight_Generator_State;
21
22 void Weight_Generator_init(DOLProcess *);
23 int Weight_Generator_fire(DOLProcess *);
24
25 #endif