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
This commit is contained in:
Pau Espin 2021-11-16 19:14:00 +01:00
parent 37a4c150e1
commit 4c23aeabc4
1 changed files with 4 additions and 12 deletions

View File

@ -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));