aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-11-16 19:14:00 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2021-11-16 19:22:01 +0100
commit4c23aeabc429f98cf328152cf7e222e647cfe572 (patch)
tree7b71e0b743ecbacafc53cadec6b3d70b0d1778c3
parent37a4c150e14fa3eeb6ee632f15b6d4d8246a3356 (diff)
pcu: Drop mp_send_all_data_ind
osmo-pcu 1.0.0 was released, so we can drop references to older osmo-pcu versions. Change-Id: I6720f066731b4336f8527643bed16ae7ea047c20
-rw-r--r--pcu/PCUIF_Components.ttcn16
1 files changed, 4 insertions, 12 deletions
diff --git a/pcu/PCUIF_Components.ttcn b/pcu/PCUIF_Components.ttcn
index 30982daf..030da051 100644
--- a/pcu/PCUIF_Components.ttcn
+++ b/pcu/PCUIF_Components.ttcn
@@ -50,10 +50,6 @@ import from GSM_RR_Types all;
* +---------------------------+
*/
-modulepar {
- boolean mp_send_all_data_ind := true;
-}
-
/* Events are used by the components to indicate that something
* has happened, e.g. we have got a connection from the PCU. */
type enumerated RAW_PCU_EventType {
@@ -419,11 +415,9 @@ runs on RAW_PCU_BTS_CT
//log(prefix, "DATA.ind (len=0)");
}
- if (use_msg or mp_send_all_data_ind) {
- PCUIF.send(pcu_msg); /* Send to the PCU and notify the TC */
- if (use_msg) {
- TC.send(ts_RAW_PCU_CLCK_EV(TDMA_EV_PDTCH_BLOCK_SENT, fn));
- }
+ PCUIF.send(pcu_msg); /* Send to the PCU and notify the TC */
+ if (use_msg) {
+ TC.send(ts_RAW_PCU_CLCK_EV(TDMA_EV_PDTCH_BLOCK_SENT, fn));
}
}
}
@@ -513,9 +507,7 @@ runs on RAW_PCU_BTS_CT {
});
const integer start_fn := 0;
- if (mp_send_all_data_ind) {
- f_tx_first_data_ind(bts_nr, info_ind, start_fn);
- }
+ f_tx_first_data_ind(bts_nr, info_ind, start_fn);
/* Notify the test case that we're done with SI13 */
TC.send(ts_RAW_PCU_EV(BTS_EV_SI13_NEGO));