summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/include/layer1/tpu_window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/firmware/include/layer1/tpu_window.h')
-rw-r--r--src/target/firmware/include/layer1/tpu_window.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/target/firmware/include/layer1/tpu_window.h b/src/target/firmware/include/layer1/tpu_window.h
new file mode 100644
index 00000000..01fab910
--- /dev/null
+++ b/src/target/firmware/include/layer1/tpu_window.h
@@ -0,0 +1,17 @@
+#ifndef _L1_TPU_CTRL_H
+#define _L1_TPU_CTRL_H
+
+enum l1_rxwin_type {
+ L1_RXWIN_PW, /* power measurement */
+ L1_RXWIN_FB, /* FCCH burst detection */
+ L1_RXWIN_SB, /* SCH burst detection */
+ L1_RXWIN_NB, /* Normal burst decoding */
+ _NUM_L1_RXWIN
+};
+
+
+void l1s_rx_win_ctrl(uint16_t arfcn, enum l1_rxwin_type wtype);
+
+void tpu_end_scenario(void);
+
+#endif /* _L1_TPU_CTRL_H */