コード例 #1
0
                public cellReselectionServingFreqInfo_Type Decode(BitArrayInputStream input)
                {
                    var type = new cellReselectionServingFreqInfo_Type();

                    type.InitDefaults();
                    var stream = new BitMaskStream(input, 1);

                    if (stream.Read())
                    {
                        type.s_NonIntraSearch = input.readBits(5);
                    }
                    type.threshServingLow        = input.readBits(5);
                    type.cellReselectionPriority = input.readBits(3);
                    return(type);
                }
コード例 #2
0
ファイル: SystemInformation.cs プロジェクト: ouyh18/LteTools
 public cellReselectionServingFreqInfo_Type Decode(BitArrayInputStream input)
 {
     cellReselectionServingFreqInfo_Type type = new cellReselectionServingFreqInfo_Type();
     type.InitDefaults();
     BitMaskStream stream = new BitMaskStream(input, 1);
     if (stream.Read())
     {
         type.s_NonIntraSearch = input.readBits(5);
     }
     type.threshServingLow = input.readBits(5);
     type.cellReselectionPriority = input.readBits(3);
     return type;
 }