Ejemplo n.º 1
0
 public PhyLayerParameters Decode(BitArrayInputStream input)
 {
     PhyLayerParameters parameters = new PhyLayerParameters();
     parameters.InitDefaults();
     parameters.ue_TxAntennaSelectionSupported = input.ReadBit() == 1;
     parameters.ue_SpecificRefSigsSupported = input.ReadBit() == 1;
     return parameters;
 }
Ejemplo n.º 2
0
            public PhyLayerParameters Decode(BitArrayInputStream input)
            {
                PhyLayerParameters parameters = new PhyLayerParameters();

                parameters.InitDefaults();
                parameters.ue_TxAntennaSelectionSupported = input.ReadBit() == 1;
                parameters.ue_SpecificRefSigsSupported    = input.ReadBit() == 1;
                return(parameters);
            }