예제 #1
0
                    public pci_arfcn_r12_Type Decode(BitArrayInputStream input)
                    {
                        pci_arfcn_r12_Type type = new pci_arfcn_r12_Type();

                        type.InitDefaults();
                        type.physCellId_r12  = input.readBits(9);
                        type.carrierFreq_r12 = input.readBits(0x10);
                        return(type);
                    }
예제 #2
0
파일: CellInfo.cs 프로젝트: ouyh18/LteTools
 public pci_arfcn_r12_Type Decode(BitArrayInputStream input)
 {
     pci_arfcn_r12_Type type = new pci_arfcn_r12_Type();
     type.InitDefaults();
     type.physCellId_r12 = input.readBits(9);
     type.carrierFreq_r12 = input.readBits(0x10);
     return type;
 }