dexter has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/32605 )
Change subject: PCUIF_Types: add message type PCU_IF_MSG_E1_CCU_IND ......................................................................
PCUIF_Types: add message type PCU_IF_MSG_E1_CCU_IND
Even though we do not need it right now, let's add the message type PCU_IF_MSG_E1_CCU_IND. This message type has been added to the PCUIF protocol recently.
Related: OS#5927 Change-Id: Ib6482d88e924f285658b933f32be42a4f63bee71 --- M library/PCUIF_Types.ttcn 1 file changed, 28 insertions(+), 0 deletions(-)
Approvals: fixeria: Looks good to me, approved pespin: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/library/PCUIF_Types.ttcn b/library/PCUIF_Types.ttcn index 76306a3..a6af2a0 100644 --- a/library/PCUIF_Types.ttcn +++ b/library/PCUIF_Types.ttcn @@ -33,6 +33,7 @@ PCU_IF_MSG_DATA_CNF_DT ('11'O), PCU_IF_MSG_RACH_IND ('22'O), PCU_IF_MSG_INFO_IND ('32'O), + PCU_IF_MSG_E1_CCU_IND ('33'O), PCU_IF_MSG_ACT_REQ ('40'O), PCU_IF_MSG_TIME_IND ('52'O), PCU_IF_MSG_INTERF_IND ('53'O), @@ -216,6 +217,17 @@ record length(2) of octetstring addr length(16) } with { variant "" };
+/* E1 CCU connection parameters */ +type record PCUIF_e1_ccu_ind { + /* GSM/GPRS air interface */ + uint8_t trx_nr, + uint8_t ts_nr, + /* E1 line interface */ + uint8_t e1_nr, + uint8_t e1_ts, + uint8_t e1_ts_ss +} with { variant "" }; + type record PCUIF_act_req { uint8_t is_activate, uint8_t trx_nr, @@ -311,6 +323,7 @@ PCUIF_rach_ind rach_ind, PCUIF_txt_ind txt_ind, PCUIF_info_ind info_ind, + PCUIF_e1_ccu_ind e1_ccu_ind, PCUIF_act_req act_req, PCUIF_time_ind time_ind, PCUIF_interf_ind interf_ind, @@ -334,6 +347,7 @@ rach_ind, msg_type = PCU_IF_MSG_RACH_IND; txt_ind, msg_type = PCU_IF_MSG_TXT_IND; info_ind, msg_type = PCU_IF_MSG_INFO_IND; + e1_ccu_ind, msg_type = PCU_IF_MSG_E1_CCU_IND; act_req, msg_type = PCU_IF_MSG_ACT_REQ; time_ind, msg_type = PCU_IF_MSG_TIME_IND; interf_ind, msg_type = PCU_IF_MSG_INTERF_IND;