aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-oc2g
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-10-05 22:22:08 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2019-11-17 02:58:31 +0700
commit78f58618f36dfc1df022f7c19fee7087d9ef3958 (patch)
tree749e0ed860c2e3089c2d95f2bba47c6f3945f01b /src/osmo-bts-oc2g
parentbd0dac3783a27023b0aaaa2c7db99c021866b7b5 (diff)
PTCCH: properly handle RTS.req for PCU_IF_SAPI_PTCCH
Diffstat (limited to 'src/osmo-bts-oc2g')
-rw-r--r--src/osmo-bts-oc2g/oc2g_l1_if.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/osmo-bts-oc2g/oc2g_l1_if.c b/src/osmo-bts-oc2g/oc2g_l1_if.c
index f9768aef..a02e9629 100644
--- a/src/osmo-bts-oc2g/oc2g_l1_if.c
+++ b/src/osmo-bts-oc2g/oc2g_l1_if.c
@@ -162,8 +162,11 @@ static int handle_ph_readytosend_ind(struct oc2gl1_hdl *fl1h,
case GsmL1_Sapi_Pacch:
rc = pcu_rx_rts_req_pdtch(fl1h->trx_no, rts_ind->u8Tn,
rts_ind->u32Fn, rts_ind->u8BlockNbr);
+ break;
case GsmL1_Sapi_Ptcch:
- // FIXME
+ rc = pcu_rx_rts_req_ptcch(fl1h->trx_no, rts_ind->u8Tn,
+ rts_ind->u32Fn, rts_ind->u8BlockNbr);
+ break;
default:
break;
}