fun_ofdm  1.0
802.11a Physical Layer for USRP
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros Pages
frame_builder.h
Go to the documentation of this file.
1 
16 #ifndef FRAME_BUILDER_H
17 #define FRAME_BUILDER_H
18 
19 #include <vector>
20 #include <complex>
21 
22 #include "fft.h"
23 #include "rates.h"
24 
25 namespace fun
26 {
47  {
48  public:
49 
53  frame_builder();
54 
62  std::vector<std::complex<double> > build_frame(std::vector<unsigned char> payload, Rate rate);
63 
64  private:
65 
67 
68  };
69 }
70 
71 
72 #endif // FRAME_BUILDER_H