Esempio n. 1
0
                        public fdd_Type Decode(BitArrayInputStream input)
                        {
                            fdd_Type type = new fdd_Type();

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

                            type.n1PUCCH_AN_P0_r10 = input.ReadBits(11);
                            if (stream.Read())
                            {
                                type.n1PUCCH_AN_P1_r10 = input.ReadBits(11);
                            }
                            return(type);
                        }
Esempio n. 2
0
 public fdd_Type Decode(BitArrayInputStream input)
 {
     fdd_Type type = new fdd_Type();
     type.InitDefaults();
     BitMaskStream stream = new BitMaskStream(input, 1);
     type.n1PUCCH_AN_P0_r10 = input.ReadBits(11);
     if (stream.Read())
     {
         type.n1PUCCH_AN_P1_r10 = input.ReadBits(11);
     }
     return type;
 }