示例#1
0
            public PRACH_ConfigSIB Decode(BitArrayInputStream input)
            {
                PRACH_ConfigSIB gsib = new PRACH_ConfigSIB();

                gsib.InitDefaults();
                gsib.rootSequenceIndex = input.readBits(10);
                gsib.prach_ConfigInfo  = PRACH_ConfigInfo.PerDecoder.Instance.Decode(input);
                return(gsib);
            }
示例#2
0
 public PRACH_ConfigSIB Decode(BitArrayInputStream input)
 {
     PRACH_ConfigSIB gsib = new PRACH_ConfigSIB();
     gsib.InitDefaults();
     gsib.rootSequenceIndex = input.ReadBits(10);
     gsib.prach_ConfigInfo = PRACH_ConfigInfo.PerDecoder.Instance.Decode(input);
     return gsib;
 }