Example #1
0
                    public equallySpacedARFCNs_Type Decode(BitArrayInputStream input)
                    {
                        equallySpacedARFCNs_Type type = new equallySpacedARFCNs_Type();

                        type.InitDefaults();
                        type.arfcn_Spacing           = input.readBits(3) + 1;
                        type.numberOfFollowingARFCNs = input.readBits(5);
                        return(type);
                    }
Example #2
0
 public equallySpacedARFCNs_Type Decode(BitArrayInputStream input)
 {
     equallySpacedARFCNs_Type type = new equallySpacedARFCNs_Type();
     type.InitDefaults();
     type.arfcn_Spacing = input.readBits(3) + 1;
     type.numberOfFollowingARFCNs = input.readBits(5);
     return type;
 }