Beispiel #1
0
                public cellSelectionInfo_Type Decode(BitArrayInputStream input)
                {
                    var type = new cellSelectionInfo_Type();

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

                    type.q_RxLevMin = input.ReadBits(6) + -70;
                    if (stream.Read())
                    {
                        type.q_RxLevMinOffset = input.ReadBits(3) + 1;
                    }
                    return(type);
                }
Beispiel #2
0
 public cellSelectionInfo_Type Decode(BitArrayInputStream input)
 {
     cellSelectionInfo_Type type = new cellSelectionInfo_Type();
     type.InitDefaults();
     BitMaskStream stream = new BitMaskStream(input, 1);
     type.q_RxLevMin = input.readBits(6) + -70;
     if (stream.Read())
     {
         type.q_RxLevMinOffset = input.readBits(3) + 1;
     }
     return type;
 }