IuUP_Emulation: Fix frame number wrap-around

As seen when running a test:
IuUP_Emulation.ttcn:150 Dynamic test case error: While RAW-encoding type '@IuUP_Types.IuUP_PDU': There are insufficient bits to encode '@IuUP_Types.IuUP_PDU_Type_0.frame_nr'

Change-Id: Ic9e69115c49545a7b9797d8f85568d5e91dfb329
This commit is contained in:
Pau Espin 2021-12-21 18:19:42 +01:00 committed by pespin
parent cfbc4b7a83
commit 64fd02b80d
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ function f_IuUP_Em_tx_encap(inout IuUP_Entity st, in octetstring payload) return
} else {
pdu := valueof(ts_IuUP_Type1(st.tx_next_frame_nr, 0, payload));
}
st.tx_next_frame_nr := st.tx_next_frame_nr + 1;
st.tx_next_frame_nr := (st.tx_next_frame_nr + 1) mod 16;
}
}
if (isvalue(pdu)) {