summaryrefslogtreecommitdiffstats
path: root/Src/osmocom-bb/src/target/firmware/include/layer1/afc.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/osmocom-bb/src/target/firmware/include/layer1/afc.h')
-rw-r--r--Src/osmocom-bb/src/target/firmware/include/layer1/afc.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/Src/osmocom-bb/src/target/firmware/include/layer1/afc.h b/Src/osmocom-bb/src/target/firmware/include/layer1/afc.h
deleted file mode 100644
index 8b43f8a..0000000
--- a/Src/osmocom-bb/src/target/firmware/include/layer1/afc.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef _L1_AFC_H
-#define _L1_AFC_H
-
-#define AFC_SNR_THRESHOLD 2560 /* 2.5 dB in fx6.10 */
-
-/* Input a frequency error sample into the AFC averaging */
-void afc_input(int32_t freq_error, uint16_t arfcn, int valid);
-
-/* Update the AFC with a frequency error, bypassing averaging */
-void afc_correct(int16_t freq_error, uint16_t arfcn);
-
-/* Update DSP with new AFC DAC value to be used for next TDMA frame */
-void afc_load_dsp(void);
-
-/* Reset the AFC to its initial DAC value */
-void afc_reset(void);
-
-#endif