summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/bb/common
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-06-07 23:06:24 +0700
committerPau Espin Pedrol <pespin@sysmocom.de>2023-08-10 15:16:49 +0200
commit8b4640ec19d95735363c635b84ca814d9c35ab76 (patch)
tree722a7cba9c7e79265e0691fea40b0fa62184e97a /src/host/layer23/include/osmocom/bb/common
parent8bbd0d173fad3708fac3207d56dd04c14912351e (diff)
l1ctl_proto: add 'start_fn' field to UL/DL TBF CFG.req messages
Diffstat (limited to 'src/host/layer23/include/osmocom/bb/common')
-rw-r--r--src/host/layer23/include/osmocom/bb/common/l1ctl.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/host/layer23/include/osmocom/bb/common/l1ctl.h b/src/host/layer23/include/osmocom/bb/common/l1ctl.h
index 25bc6e8e..40b31591 100644
--- a/src/host/layer23/include/osmocom/bb/common/l1ctl.h
+++ b/src/host/layer23/include/osmocom/bb/common/l1ctl.h
@@ -81,10 +81,11 @@ int l1ctl_tx_gprs_ul_block_req(struct osmocom_ms *ms, uint32_t fn, uint8_t tn,
/* Transmit L1CTL_GPRS_UL_TBF_CFG_REQ */
int l1ctl_tx_gprs_ul_tbf_cfg_req(struct osmocom_ms *ms, uint8_t tbf_ref,
- uint8_t slotmask);
+ uint8_t slotmask, uint32_t start_fn);
/* Transmit L1CTL_GPRS_DL_TBF_CFG_REQ */
int l1ctl_tx_gprs_dl_tbf_cfg_req(struct osmocom_ms *ms, uint8_t tbf_ref,
- uint8_t slotmask, uint8_t dl_tfi);
+ uint8_t slotmask, uint32_t start_fn,
+ uint8_t dl_tfi);
#endif