예제 #1
0
            public RACH_ConfigDedicated Decode(BitArrayInputStream input)
            {
                RACH_ConfigDedicated dedicated = new RACH_ConfigDedicated();

                dedicated.InitDefaults();
                dedicated.ra_PreambleIndex   = input.ReadBits(6);
                dedicated.ra_PRACH_MaskIndex = input.ReadBits(4);
                return(dedicated);
            }
예제 #2
0
 public RACH_ConfigDedicated Decode(BitArrayInputStream input)
 {
     RACH_ConfigDedicated dedicated = new RACH_ConfigDedicated();
     dedicated.InitDefaults();
     dedicated.ra_PreambleIndex = input.ReadBits(6);
     dedicated.ra_PRACH_MaskIndex = input.ReadBits(4);
     return dedicated;
 }