コード例 #1
0
        public void Parse(WaveformConfigFileType file, RFmxInstrMX instr)
        {
            // Ensure CanParse was first called prior to executing this function
            if (rootData == null)
            {
                bool result = CanParse(file);
                if (!result)
                {
                    throw new InvalidOperationException($"{file.FileName} is not a valid file for this plugin.");
                }
            }
            using (LogContext.PushProperty("Plugin", nameof(NrRfwsPlugin)))
            {
                // The RFWS file breaks up the NR configuration in two sections: a section representing carrier definitions (in which
                // the NR specific configurations are set), and then a all of the carrier sets in the waveform. These carrier sets
                // reference one of the carrier definitions and configure properties such as the frequency offset for the carrier.
                //
                // This doesn't neatly map to RFmx, so an extra step is performed after reading in these objects to then create
                // a unified object matching the RFmx layout.

                int carrierSetIndex = 0;
                List <RfwsCarrierSet> carrierSets = new List <RfwsCarrierSet>();
                foreach (XElement carrierSetSection in rootData.FindSections <RfwsCarrierSet>())
                {
                    RfwsCarrierSet set = carrierSetSection.Deserialize <RfwsCarrierSet>();
                    carrierSets.Add(set);
                }
                List <Carrier> carriers = new List <Carrier>();
                foreach (XElement carrierDefinitionSetion in rootData.FindSections <Carrier>())
                {
                    Carrier carrier = carrierDefinitionSetion.Deserialize <Carrier>();
                    carriers.Add(carrier);
                }
                // Now that we have loaded all relevant information from the file, construct the final object
                // and pass the data to the serialization engine to create the RFmx NR signal
                foreach (RfwsCarrierSet set in carrierSets)
                {
                    NrSignalModel signal   = new NrSignalModel(set, carriers);
                    RFmxNRMX      nrSignal = instr.CreateNRSignalConfigurationFromObject(signal, signalName: $"CarrierSet{carrierSetIndex}");
                    // Select initial measurements so RFmx doesn't complain on launch that nothing is selected
                    nrSignal.SelectMeasurements("", RFmxNRMXMeasurementTypes.Acp | RFmxNRMXMeasurementTypes.ModAcc, true);
                    // RFmx will complain in some configurations if this enabled; since the plugin identifes the RBs this uneeded
                    nrSignal.SetAutoResourceBlockDetectionEnabled("", RFmxNRMXAutoResourceBlockDetectionEnabled.False);
                    carrierSetIndex++;
                }
            }
        }
コード例 #2
0
 /// <summary>
 /// Creates an NR signal configuration by serializing the data in <paramref name="objectToSerialize"/>.
 /// </summary>
 /// <returns></returns>
 public static RFmxNRMX CreateNRSignalConfigurationFromObject(this RFmxInstrMX instr, object objectToSerialize, string baseSelectorString = "")
 {
     return(instr.CreateNRSignalConfigurationFromObject(objectToSerialize, string.Empty, baseSelectorString));
 }