Moved config.h to src/ top level

This commit is contained in:
Thomas Kolb 2022-02-27 18:41:16 +01:00
parent 8a8ddc5ea3
commit 890baf577f
2 changed files with 6 additions and 4 deletions

View File

@ -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

View File

@ -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