summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-02-21 11:12:52 +0100
committerHarald Welte <laforge@gnumonks.org>2010-03-01 23:48:44 +0100
commitd520c7e4cf8ac63d61294a63ff8c0bd0639c1edd (patch)
treea766e168d977d92cb748455ca5227863b6897c04 /src/target/firmware/include
parent59265bcae1a3faf5e79c6d9051ed4a5019b0856b (diff)
layer1/tpu_window.c support for Uplink/Tx
* introduce l1s_tx_win_ctrl() function This only controls the ABB window, and not the TRF and RFFE window yet
Diffstat (limited to 'src/target/firmware/include')
-rw-r--r--src/target/firmware/include/layer1/tpu_window.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/target/firmware/include/layer1/tpu_window.h b/src/target/firmware/include/layer1/tpu_window.h
index 01fab910..fffe3b05 100644
--- a/src/target/firmware/include/layer1/tpu_window.h
+++ b/src/target/firmware/include/layer1/tpu_window.h
@@ -9,8 +9,14 @@ enum l1_rxwin_type {
_NUM_L1_RXWIN
};
+enum l1_txwin_type {
+ L1_TXWIN_NB, /* Normal burst sending */
+ L1_TXWIN_AB, /* RACH burst sending */
+ _NUM_L1_TXWIN
+};
void l1s_rx_win_ctrl(uint16_t arfcn, enum l1_rxwin_type wtype);
+void l1s_tx_win_ctrl(uint16_t arfcn, enum l1_txwin_type wtype, uint8_t pwr);
void tpu_end_scenario(void);