示例#1
0
                    public pci_arfcn_r10_Type Decode(BitArrayInputStream input)
                    {
                        pci_arfcn_r10_Type type = new pci_arfcn_r10_Type();

                        type.InitDefaults();
                        type.physCellId_r10  = input.readBits(9);
                        type.carrierFreq_r10 = input.readBits(0x10);
                        return(type);
                    }
示例#2
0
文件: RLF.cs 项目: ouyh18/LteTools
 public pci_arfcn_r10_Type Decode(BitArrayInputStream input)
 {
     pci_arfcn_r10_Type type = new pci_arfcn_r10_Type();
     type.InitDefaults();
     type.physCellId_r10 = input.readBits(9);
     type.carrierFreq_r10 = input.readBits(0x10);
     return type;
 }