summaryrefslogtreecommitdiffstats
path: root/Src/osmocom-bb/src/target/firmware/include/rffe.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/osmocom-bb/src/target/firmware/include/rffe.h')
-rw-r--r--Src/osmocom-bb/src/target/firmware/include/rffe.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/Src/osmocom-bb/src/target/firmware/include/rffe.h b/Src/osmocom-bb/src/target/firmware/include/rffe.h
deleted file mode 100644
index c28c696..0000000
--- a/Src/osmocom-bb/src/target/firmware/include/rffe.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef _RFFE_H
-#define _RFFE_H
-
-#include <osmocom/gsm/gsm_utils.h>
-
-extern const uint8_t system_inherent_gain;
-
-/* initialize RF Frontend */
-void rffe_init(void);
-
-/* switch RF Frontend Mode */
-void rffe_mode(enum gsm_band band, int tx);
-
-/* query RF wiring */
-enum rffe_port
-{
- PORT_LO = 0, /* Combined 850/900 port */
- PORT_HI = 1, /* Combined 1800/1900 port */
- PORT_GSM850 = 2,
- PORT_GSM900 = 3,
- PORT_DCS1800 = 4,
- PORT_PCS1900 = 5,
-};
-
-uint32_t rffe_get_rx_ports(void);
-uint32_t rffe_get_tx_ports(void);
-
-/* get current gain of RF frontend (anything between antenna and baseband in dBm */
-uint8_t rffe_get_gain(void);
-
-void rffe_set_gain(int16_t exp_inp, int16_t target_bb);
-
-#endif