Moved config.h to src/ top level
This commit is contained in:
parent
8a8ddc5ea3
commit
890baf577f
|
@ -12,7 +12,7 @@ set(sources
|
|||
src/utils.h
|
||||
src/main.c
|
||||
src/results.h
|
||||
src/layer1/config.h
|
||||
src/config.h
|
||||
src/layer1/correlator.c
|
||||
src/layer1/correlator.h
|
||||
src/layer1/freq_est.c
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
#ifndef LAYER1_CONFIG_H
|
||||
#define LAYER1_CONFIG_H
|
||||
#ifndef CONFIG_H
|
||||
#define CONFIG_H
|
||||
|
||||
#include <liquid/liquid.h>
|
||||
|
||||
/*** LAYER 1 CONFIG ***/
|
||||
|
||||
#define PAYLOAD_CHANNEL_CODE LIQUID_FEC_CONV_V27P34
|
||||
#define PAYLOAD_MODULATION LIQUID_MODEM_QAM16
|
||||
|
||||
|
@ -22,4 +24,4 @@
|
|||
#define TRANSMISSION_RAMP_UP_LEN 64 // symbols
|
||||
#define TRANSMISSION_RAMP_DOWN_LEN 32 // symbols
|
||||
|
||||
#endif // LAYER1_CONFIG_H
|
||||
#endif // CONFIG_H
|
Loading…
Reference in a new issue