├── Core Includes ├── BandPlan.xml ├── FrontEnds.xml ├── NDde.dll ├── Plugins.xml ├── PortAudio.dll ├── SDRSharp.AfedriSDRNet.dll ├── SDRSharp.FUNcube.dll ├── SDRSharp.FUNcubeProPlus.dll ├── SDRSharp.HackRF.dll ├── SDRSharp.RTLSDR.dll ├── SDRSharp.RTLTCP.dll ├── SDRSharp.SDRIP.dll ├── SDRSharp.SDRIQ.dll ├── SDRSharp.SoftRock.dll ├── SRDLL.dll ├── airspy.dll ├── airspyhf.dll ├── digital_frequencies.xml ├── frequencies.xml ├── hackrf.dll ├── install-rtlsdr.bat ├── inverted_frequencies.xml ├── libusb-1.0.dll ├── modesparser.dll ├── msvcr100.dll ├── pthreadVCE2.dll ├── rtlsdr.dll ├── sdriq.dll └── shark.dll ├── README.md ├── SDRSharp.CollapsiblePanel ├── Properties │ └── AssemblyInfo.cs ├── SDRSharp.CollapsiblePanel.Properties │ ├── Resources.cs │ ├── Resources.resource │ └── Resources.resx ├── SDRSharp.CollapsiblePanel.csproj ├── SDRSharp.CollapsiblePanel.sln └── SDRSharp.CollapsiblePanel │ ├── CollapsiblePanel.cs │ ├── CollapsiblePanel.resource │ ├── CollapsiblePanel.resx │ ├── CollapsiblePanelDesigner.cs │ ├── ContentPanel.cs │ ├── ContentPanelDesigner.cs │ └── PanelStateOptions.cs ├── SDRSharp.Common ├── Properties │ └── AssemblyInfo.cs ├── SDRSharp.Common.csproj ├── SDRSharp.Common.sln ├── SDRSharp.Common │ ├── ByteSamplesEventArgs.cs │ ├── ComplexSamplesEventArgs.cs │ ├── IFFTSource.cs │ ├── ISharpControl.cs │ ├── ISharpPlugin.cs │ ├── IVFOSource.cs │ ├── PluginPosition.cs │ ├── RealSamplesEventArgs.cs │ └── SamplesAvailableDelegate.cs └── refs SDRSharp.PanView and Radio.txt ├── SDRSharp.FrequencyEdit ├── EntryMode.cs ├── FrequencyChangingEventArgs.cs ├── FrequencyEdit.cs ├── FrequencyEditDigit.cs ├── FrequencyEditDigitClickEventArgs.cs ├── FrequencyEditSeparator.cs ├── IRenderable.cs ├── OnDigitClickDelegate.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── SDRSharp.FrequencyEdit.csproj ├── SDRSharp.PanView ├── Properties │ └── AssemblyInfo.cs ├── SDRSharp.PanView.csproj ├── SDRSharp.PanView.sln ├── SDRSharp.PanView │ ├── BandType.cs │ ├── BandwidthEventArgs.cs │ ├── CustomPaintEventArgs.cs │ ├── CustomPaintEventHandler.cs │ ├── FrequencyChangeSource.cs │ ├── FrequencyEventArgs.cs │ ├── GradientDialog.cs │ ├── GradientDialog.resx │ ├── LineInsertEventArgs.cs │ ├── LineInsertEventHandler.cs │ ├── ManualBandwidthChangeEventHandler.cs │ ├── ManualFrequencyChangeEventHandler.cs │ ├── PeakDetector.cs │ ├── SpectrumAnalyzer.cs │ ├── SpectrumStyle.cs │ └── Waterfall.cs └── refs Radio.txt ├── SDRSharp.Radio ├── PortAudioSharp │ ├── PaDeviceIndex.cs │ ├── PaDeviceInfo.cs │ ├── PaError.cs │ ├── PaHostApiInfo.cs │ ├── PaHostApiTypeId.cs │ ├── PaHostErrorInfo.cs │ ├── PaSampleFormat.cs │ ├── PaStreamCallbackDelegate.cs │ ├── PaStreamCallbackFlags.cs │ ├── PaStreamCallbackResult.cs │ ├── PaStreamCallbackTimeInfo.cs │ ├── PaStreamFinishedCallbackDelegate.cs │ ├── PaStreamFlags.cs │ ├── PaStreamInfo.cs │ ├── PaStreamParameters.cs │ └── PortAudioAPI.cs ├── Properties │ └── AssemblyInfo.cs ├── SDRSharp.Radio.PortAudio │ ├── AudioBufferAvailableDelegate.cs │ ├── AudioBufferNeededDelegate.cs │ ├── AudioDevice.cs │ ├── DeviceDirection.cs │ ├── Int24.cs │ ├── WaveDuplex.cs │ ├── WaveFile.cs │ ├── WavePlayer.cs │ └── WaveRecorder.cs ├── SDRSharp.Radio.csproj ├── SDRSharp.Radio.sln ├── SDRSharp.Radio │ ├── AmAntiFading.cs │ ├── AmDetector.cs │ ├── AutomaticGainControl.cs │ ├── BlockMode.cs │ ├── BufferNeededDelegate.cs │ ├── CarrierLocker.cs │ ├── CircularBuffer.cs │ ├── Complex.cs │ ├── ComplexCircularBuffer.cs │ ├── ComplexDecimator.cs │ ├── ComplexFifoStream.cs │ ├── ComplexFilter.cs │ ├── CwDetector.cs │ ├── DSPThreadPool.cs │ ├── DcRemover.cs │ ├── DetectorType.cs │ ├── DownConverter.cs │ ├── FilterBuilder.cs │ ├── FirFilter.cs │ ├── FloatCircularBuffer.cs │ ├── FloatDecimator.cs │ ├── FloatFifoStream.cs │ ├── FmDetector.cs │ ├── FmMode.cs │ ├── Fourier.cs │ ├── FrequencyTranslator.cs │ ├── HookManager.cs │ ├── IBaseProcessor.cs │ ├── IConfigurationPanelProvider.cs │ ├── IConnectableSource.cs │ ├── IControlAwareObject.cs │ ├── IFloatingConfigDialogProvider.cs │ ├── IFrontendController.cs │ ├── IFrontendOffset.cs │ ├── IIQProcessor.cs │ ├── IIQStreamController.cs │ ├── INonBlockingController.cs │ ├── IQBalancer.cs │ ├── IQFirFilter.cs │ ├── IRdsBitStreamProcessor.cs │ ├── IRealProcessor.cs │ ├── ISampleRateChangeSource.cs │ ├── ISoundcardController.cs │ ├── ISpectrumProvider.cs │ ├── IStreamProcessor.cs │ ├── ITunableSource.cs │ ├── IirFilter.cs │ ├── IirFilterType.cs │ ├── Oscillator.cs │ ├── OverlapAddProcessor.cs │ ├── OverlapCrossfadeProcessor.cs │ ├── OverlapSaveProcessor.cs │ ├── OverlapSlideProcessor.cs │ ├── Pll.cs │ ├── ProcessorType.cs │ ├── RdsDecoder.cs │ ├── RdsDetectorBank.cs │ ├── RdsDumpGroups.cs │ ├── RdsFrame.cs │ ├── RdsFrameAvailableDelegate.cs │ ├── Resampler.cs │ ├── SamplesAvailableDelegate.cs │ ├── SharpEvent.cs │ ├── SharpThreadPool.cs │ ├── SideBandDetector.cs │ ├── StereoDecoder.cs │ ├── StreamControl.cs │ ├── SyndromeDetector.cs │ ├── Trig.cs │ ├── TuningStyle.cs │ ├── UnsafeBuffer.cs │ ├── Utils.cs │ ├── Vfo.cs │ └── WindowType.cs └── refs to PortAudio.dll & Shark.dll.txt ├── SDRSharp.sln └── SDRSharp ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── SDRSharp.FrontEnds.Airspy ├── AirspyDevice.cs ├── AirspyGainMode.cs ├── AirspyIO.cs ├── ControllerPanel.cs ├── ControllerPanel.resx ├── ConversionFilters.cs ├── NativeMethods.cs ├── airspy_error.cs ├── airspy_gpio_pin_t.cs ├── airspy_gpio_port_t.cs ├── airspy_sample_block_cb_fn.cs ├── airspy_sample_type.cs └── airspy_transfer.cs ├── SDRSharp.FrontEnds.AirspyHF ├── AirspyHFDevice.cs ├── AirspyHFIO.cs ├── ControllerPanel.cs ├── ControllerPanel.resx ├── NativeMethods.cs ├── airspyhf_error.cs ├── airspyhf_sample_cb.cs └── airspyhf_transfer.cs ├── SDRSharp.FrontEnds.SpyServer ├── ClientHandshake.cs ├── ClientSync.cs ├── CommandHeader.cs ├── CommandType.cs ├── Constants.cs ├── ControllerPanel.cs ├── ControllerPanel.resx ├── DeviceInfo.cs ├── DeviceType.cs ├── MessageHeader.cs ├── MessageType.cs ├── SettingTarget.cs ├── SettingType.cs ├── SpyClient.cs ├── SpyServerIO.cs ├── StreamFormat.cs ├── StreamType.cs └── StreamingMode.cs ├── SDRSharp.csproj ├── SDRSharp.sln ├── SDRSharp ├── App.config ├── MainForm.cs ├── MainForm.resource ├── MainForm.resx ├── Program.cs ├── SDRSharp.ico ├── SharpControlProxy.cs └── app.manifest ├── refs Panel Common FreqEdit PanView Radio & airspy.dll airspyhf.dll .txt └── ver 1.0.0.1632.txt /Core Includes/BandPlan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/BandPlan.xml -------------------------------------------------------------------------------- /Core Includes/FrontEnds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/FrontEnds.xml -------------------------------------------------------------------------------- /Core Includes/NDde.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/NDde.dll -------------------------------------------------------------------------------- /Core Includes/Plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/Plugins.xml -------------------------------------------------------------------------------- /Core Includes/PortAudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/PortAudio.dll -------------------------------------------------------------------------------- /Core Includes/SDRSharp.AfedriSDRNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/SDRSharp.AfedriSDRNet.dll -------------------------------------------------------------------------------- /Core Includes/SDRSharp.FUNcube.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/SDRSharp.FUNcube.dll -------------------------------------------------------------------------------- /Core Includes/SDRSharp.FUNcubeProPlus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/SDRSharp.FUNcubeProPlus.dll -------------------------------------------------------------------------------- /Core Includes/SDRSharp.HackRF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/SDRSharp.HackRF.dll -------------------------------------------------------------------------------- /Core Includes/SDRSharp.RTLSDR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/SDRSharp.RTLSDR.dll -------------------------------------------------------------------------------- /Core Includes/SDRSharp.RTLTCP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/SDRSharp.RTLTCP.dll -------------------------------------------------------------------------------- /Core Includes/SDRSharp.SDRIP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/SDRSharp.SDRIP.dll -------------------------------------------------------------------------------- /Core Includes/SDRSharp.SDRIQ.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/SDRSharp.SDRIQ.dll -------------------------------------------------------------------------------- /Core Includes/SDRSharp.SoftRock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/SDRSharp.SoftRock.dll -------------------------------------------------------------------------------- /Core Includes/SRDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/SRDLL.dll -------------------------------------------------------------------------------- /Core Includes/airspy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/airspy.dll -------------------------------------------------------------------------------- /Core Includes/airspyhf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/airspyhf.dll -------------------------------------------------------------------------------- /Core Includes/digital_frequencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/digital_frequencies.xml -------------------------------------------------------------------------------- /Core Includes/frequencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/frequencies.xml -------------------------------------------------------------------------------- /Core Includes/hackrf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/hackrf.dll -------------------------------------------------------------------------------- /Core Includes/install-rtlsdr.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/install-rtlsdr.bat -------------------------------------------------------------------------------- /Core Includes/inverted_frequencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/inverted_frequencies.xml -------------------------------------------------------------------------------- /Core Includes/libusb-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/libusb-1.0.dll -------------------------------------------------------------------------------- /Core Includes/modesparser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/modesparser.dll -------------------------------------------------------------------------------- /Core Includes/msvcr100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/msvcr100.dll -------------------------------------------------------------------------------- /Core Includes/pthreadVCE2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/pthreadVCE2.dll -------------------------------------------------------------------------------- /Core Includes/rtlsdr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/rtlsdr.dll -------------------------------------------------------------------------------- /Core Includes/sdriq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/sdriq.dll -------------------------------------------------------------------------------- /Core Includes/shark.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/Core Includes/shark.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/README.md -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel.Properties/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel.Properties/Resources.cs -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel.Properties/Resources.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel.Properties/Resources.resource -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel.Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel.Properties/Resources.resx -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel.csproj -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel.sln -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanel.cs -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanel.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanel.resource -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanel.resx -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanelDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/CollapsiblePanelDesigner.cs -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/ContentPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/ContentPanel.cs -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/ContentPanelDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/ContentPanelDesigner.cs -------------------------------------------------------------------------------- /SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/PanelStateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.CollapsiblePanel/SDRSharp.CollapsiblePanel/PanelStateOptions.cs -------------------------------------------------------------------------------- /SDRSharp.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDRSharp.Common/SDRSharp.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/SDRSharp.Common.csproj -------------------------------------------------------------------------------- /SDRSharp.Common/SDRSharp.Common.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/SDRSharp.Common.sln -------------------------------------------------------------------------------- /SDRSharp.Common/SDRSharp.Common/ByteSamplesEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/SDRSharp.Common/ByteSamplesEventArgs.cs -------------------------------------------------------------------------------- /SDRSharp.Common/SDRSharp.Common/ComplexSamplesEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/SDRSharp.Common/ComplexSamplesEventArgs.cs -------------------------------------------------------------------------------- /SDRSharp.Common/SDRSharp.Common/IFFTSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/SDRSharp.Common/IFFTSource.cs -------------------------------------------------------------------------------- /SDRSharp.Common/SDRSharp.Common/ISharpControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/SDRSharp.Common/ISharpControl.cs -------------------------------------------------------------------------------- /SDRSharp.Common/SDRSharp.Common/ISharpPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/SDRSharp.Common/ISharpPlugin.cs -------------------------------------------------------------------------------- /SDRSharp.Common/SDRSharp.Common/IVFOSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/SDRSharp.Common/IVFOSource.cs -------------------------------------------------------------------------------- /SDRSharp.Common/SDRSharp.Common/PluginPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/SDRSharp.Common/PluginPosition.cs -------------------------------------------------------------------------------- /SDRSharp.Common/SDRSharp.Common/RealSamplesEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/SDRSharp.Common/RealSamplesEventArgs.cs -------------------------------------------------------------------------------- /SDRSharp.Common/SDRSharp.Common/SamplesAvailableDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Common/SDRSharp.Common/SamplesAvailableDelegate.cs -------------------------------------------------------------------------------- /SDRSharp.Common/refs SDRSharp.PanView and Radio.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/EntryMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/EntryMode.cs -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/FrequencyChangingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/FrequencyChangingEventArgs.cs -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/FrequencyEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/FrequencyEdit.cs -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/FrequencyEditDigit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/FrequencyEditDigit.cs -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/FrequencyEditDigitClickEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/FrequencyEditDigitClickEventArgs.cs -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/FrequencyEditSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/FrequencyEditSeparator.cs -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/IRenderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/IRenderable.cs -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/OnDigitClickDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/OnDigitClickDelegate.cs -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/Properties/Resources.resx -------------------------------------------------------------------------------- /SDRSharp.FrequencyEdit/SDRSharp.FrequencyEdit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.FrequencyEdit/SDRSharp.FrequencyEdit.csproj -------------------------------------------------------------------------------- /SDRSharp.PanView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView.csproj -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView.sln -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/BandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/BandType.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/BandwidthEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/BandwidthEventArgs.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/CustomPaintEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/CustomPaintEventArgs.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/CustomPaintEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/CustomPaintEventHandler.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/FrequencyChangeSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/FrequencyChangeSource.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/FrequencyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/FrequencyEventArgs.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/GradientDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/GradientDialog.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/GradientDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/GradientDialog.resx -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/LineInsertEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/LineInsertEventArgs.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/LineInsertEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/LineInsertEventHandler.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/ManualBandwidthChangeEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/ManualBandwidthChangeEventHandler.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/ManualFrequencyChangeEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/ManualFrequencyChangeEventHandler.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/PeakDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/PeakDetector.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/SpectrumAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/SpectrumAnalyzer.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/SpectrumStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/SpectrumStyle.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/SDRSharp.PanView/Waterfall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.PanView/SDRSharp.PanView/Waterfall.cs -------------------------------------------------------------------------------- /SDRSharp.PanView/refs Radio.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaDeviceIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaDeviceIndex.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaDeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaDeviceInfo.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaError.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaHostApiInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaHostApiInfo.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaHostApiTypeId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaHostApiTypeId.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaHostErrorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaHostErrorInfo.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaSampleFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaSampleFormat.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaStreamCallbackDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaStreamCallbackDelegate.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaStreamCallbackFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaStreamCallbackFlags.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaStreamCallbackResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaStreamCallbackResult.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaStreamCallbackTimeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaStreamCallbackTimeInfo.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaStreamFinishedCallbackDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaStreamFinishedCallbackDelegate.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaStreamFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaStreamFlags.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaStreamInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaStreamInfo.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PaStreamParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PaStreamParameters.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/PortAudioSharp/PortAudioAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/PortAudioSharp/PortAudioAPI.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio.PortAudio/AudioBufferAvailableDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio.PortAudio/AudioBufferAvailableDelegate.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio.PortAudio/AudioBufferNeededDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio.PortAudio/AudioBufferNeededDelegate.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio.PortAudio/AudioDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio.PortAudio/AudioDevice.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio.PortAudio/DeviceDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio.PortAudio/DeviceDirection.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio.PortAudio/Int24.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio.PortAudio/Int24.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio.PortAudio/WaveDuplex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio.PortAudio/WaveDuplex.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio.PortAudio/WaveFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio.PortAudio/WaveFile.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio.PortAudio/WavePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio.PortAudio/WavePlayer.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio.PortAudio/WaveRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio.PortAudio/WaveRecorder.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio.csproj -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio.sln -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/AmAntiFading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/AmAntiFading.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/AmDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/AmDetector.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/AutomaticGainControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/AutomaticGainControl.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/BlockMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/BlockMode.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/BufferNeededDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/BufferNeededDelegate.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/CarrierLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/CarrierLocker.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/CircularBuffer.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/Complex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/Complex.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/ComplexCircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/ComplexCircularBuffer.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/ComplexDecimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/ComplexDecimator.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/ComplexFifoStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/ComplexFifoStream.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/ComplexFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/ComplexFilter.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/CwDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/CwDetector.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/DSPThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/DSPThreadPool.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/DcRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/DcRemover.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/DetectorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/DetectorType.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/DownConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/DownConverter.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/FilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/FilterBuilder.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/FirFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/FirFilter.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/FloatCircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/FloatCircularBuffer.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/FloatDecimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/FloatDecimator.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/FloatFifoStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/FloatFifoStream.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/FmDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/FmDetector.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/FmMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/FmMode.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/Fourier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/Fourier.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/FrequencyTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/FrequencyTranslator.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/HookManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/HookManager.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IBaseProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IBaseProcessor.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IConfigurationPanelProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IConfigurationPanelProvider.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IConnectableSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IConnectableSource.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IControlAwareObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IControlAwareObject.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IFloatingConfigDialogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IFloatingConfigDialogProvider.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IFrontendController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IFrontendController.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IFrontendOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IFrontendOffset.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IIQProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IIQProcessor.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IIQStreamController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IIQStreamController.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/INonBlockingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/INonBlockingController.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IQBalancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IQBalancer.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IQFirFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IQFirFilter.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IRdsBitStreamProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IRdsBitStreamProcessor.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IRealProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IRealProcessor.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/ISampleRateChangeSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/ISampleRateChangeSource.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/ISoundcardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/ISoundcardController.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/ISpectrumProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/ISpectrumProvider.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IStreamProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IStreamProcessor.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/ITunableSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/ITunableSource.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IirFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IirFilter.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/IirFilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/IirFilterType.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/Oscillator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/Oscillator.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/OverlapAddProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/OverlapAddProcessor.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/OverlapCrossfadeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/OverlapCrossfadeProcessor.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/OverlapSaveProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/OverlapSaveProcessor.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/OverlapSlideProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/OverlapSlideProcessor.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/Pll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/Pll.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/ProcessorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/ProcessorType.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/RdsDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/RdsDecoder.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/RdsDetectorBank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/RdsDetectorBank.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/RdsDumpGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/RdsDumpGroups.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/RdsFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/RdsFrame.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/RdsFrameAvailableDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/RdsFrameAvailableDelegate.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/Resampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/Resampler.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/SamplesAvailableDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/SamplesAvailableDelegate.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/SharpEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/SharpEvent.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/SharpThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/SharpThreadPool.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/SideBandDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/SideBandDetector.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/StereoDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/StereoDecoder.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/StreamControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/StreamControl.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/SyndromeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/SyndromeDetector.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/Trig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/Trig.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/TuningStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/TuningStyle.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/UnsafeBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/UnsafeBuffer.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/Utils.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/Vfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/Vfo.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/SDRSharp.Radio/WindowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.Radio/SDRSharp.Radio/WindowType.cs -------------------------------------------------------------------------------- /SDRSharp.Radio/refs to PortAudio.dll & Shark.dll.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SDRSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp.sln -------------------------------------------------------------------------------- /SDRSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDRSharp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SDRSharp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/Properties/Resources.resx -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/AirspyDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/AirspyDevice.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/AirspyGainMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/AirspyGainMode.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/AirspyIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/AirspyIO.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/ControllerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/ControllerPanel.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/ControllerPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/ControllerPanel.resx -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/ConversionFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/ConversionFilters.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/NativeMethods.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_error.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_gpio_pin_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_gpio_pin_t.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_gpio_port_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_gpio_port_t.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_sample_block_cb_fn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_sample_block_cb_fn.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_sample_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_sample_type.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_transfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.Airspy/airspy_transfer.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.AirspyHF/AirspyHFDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.AirspyHF/AirspyHFDevice.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.AirspyHF/AirspyHFIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.AirspyHF/AirspyHFIO.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.AirspyHF/ControllerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.AirspyHF/ControllerPanel.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.AirspyHF/ControllerPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.AirspyHF/ControllerPanel.resx -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.AirspyHF/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.AirspyHF/NativeMethods.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.AirspyHF/airspyhf_error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.AirspyHF/airspyhf_error.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.AirspyHF/airspyhf_sample_cb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.AirspyHF/airspyhf_sample_cb.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.AirspyHF/airspyhf_transfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.AirspyHF/airspyhf_transfer.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/ClientHandshake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/ClientHandshake.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/ClientSync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/ClientSync.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/CommandHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/CommandHeader.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/CommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/CommandType.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/Constants.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/ControllerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/ControllerPanel.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/ControllerPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/ControllerPanel.resx -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/DeviceInfo.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/DeviceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/DeviceType.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/MessageHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/MessageHeader.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/MessageType.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/SettingTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/SettingTarget.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/SettingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/SettingType.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/SpyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/SpyClient.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/SpyServerIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/SpyServerIO.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/StreamFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/StreamFormat.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/StreamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/StreamType.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.FrontEnds.SpyServer/StreamingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.FrontEnds.SpyServer/StreamingMode.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.csproj -------------------------------------------------------------------------------- /SDRSharp/SDRSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp.sln -------------------------------------------------------------------------------- /SDRSharp/SDRSharp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp/App.config -------------------------------------------------------------------------------- /SDRSharp/SDRSharp/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp/MainForm.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp/MainForm.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp/MainForm.resource -------------------------------------------------------------------------------- /SDRSharp/SDRSharp/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp/MainForm.resx -------------------------------------------------------------------------------- /SDRSharp/SDRSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp/Program.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp/SDRSharp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp/SDRSharp.ico -------------------------------------------------------------------------------- /SDRSharp/SDRSharp/SharpControlProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp/SharpControlProxy.cs -------------------------------------------------------------------------------- /SDRSharp/SDRSharp/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRSharpR/SDRSharp/HEAD/SDRSharp/SDRSharp/app.manifest -------------------------------------------------------------------------------- /SDRSharp/refs Panel Common FreqEdit PanView Radio & airspy.dll airspyhf.dll .txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SDRSharp/ver 1.0.0.1632.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------