aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/sysmobts-calib/sysmobts-layer1.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2012-07-22 22:42:36 +0200
committerHarald Welte <laforge@gnumonks.org>2012-07-22 22:42:36 +0200
commit678321d013c320c31a1820135f32cee63d0c0ae7 (patch)
treee782cd0500da4a06e36583fdadc619a27bc8b44b /contrib/sysmobts-calib/sysmobts-layer1.h
parente729a3d595baf4f3fb9bf572840c698fe71ec072 (diff)
determine (and use) the API version as indicated in the header files
From our header files v2.4 onwards, we include some macros that allow us to do compile-time checks for the API header version. As older headers don't have those macros, we have to fall back to assume it will be v2.2
Diffstat (limited to 'contrib/sysmobts-calib/sysmobts-layer1.h')
-rw-r--r--contrib/sysmobts-calib/sysmobts-layer1.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/sysmobts-calib/sysmobts-layer1.h b/contrib/sysmobts-calib/sysmobts-layer1.h
index 5b2b285d..ec961eba 100644
--- a/contrib/sysmobts-calib/sysmobts-layer1.h
+++ b/contrib/sysmobts-calib/sysmobts-layer1.h
@@ -1,6 +1,18 @@
#ifndef SYSMOBTS_LAYER_H
#define SYSMOBTS_LAYER_H
+#include <sysmocom/femtobts/superfemto.h>
+
+/* older header files don't have this */
+#ifndef SUPERFEMTO_API
+#define SUPERFEMTO_API(x,y,z) ((x << 16) + (y << 8) + z)
+#endif
+
+#ifndef SUPERFEMTO_API_VERSION
+#define SUPERFEMTO_API_VERSION SUPERFEMTO_API(2,2,0)
+#endif
+
+
extern int initialize_layer1(uint32_t dsp_flags);
extern int print_system_info();
extern int activate_rf_frontend(int clock_source, int clock_cor);