GSM_Types: Fix RSL Chanenl number encoding; Add OSMO_PDCH extension

This commit is contained in:
Harald Welte 2017-07-30 17:17:12 +02:00
parent 1b9b77096d
commit 6f3c223b9a
1 changed files with 6 additions and 5 deletions

View File

@ -33,11 +33,12 @@ module GSM_Types {
/* TS 48.058 9.3.1 Channel Number IE */
type enumerated RslChanNr0 {
RSL_CHAN_NR_INVALID ('00'H),
RSL_CHAN_NR_Bm_ACCH ('01'H),
RSL_CHAN_NR_BCCH ('10'H),
RSL_CHAN_NR_RACH ('11'H),
RSL_CHAN_NR_PCH_AGCH ('12'H)
RSL_CHAN_NR_INVALID ('00000'B),
RSL_CHAN_NR_Bm_ACCH ('00001'B),
RSL_CHAN_NR_BCCH ('10000'B),
RSL_CHAN_NR_RACH ('10001'B),
RSL_CHAN_NR_PCH_AGCH ('10010'B),
RSL_CHAN_NR_OSMO_PDCH ('11000'B)
} with { variant "FIELDLENGTH(5)" variant "FIELDORDER(msb)" };
type record RslChanNr2 {