├── .gitignore ├── AMBETools.nsi ├── AMBETools ├── AMBETools.sln ├── BUILD.txt ├── CHANGES.txt ├── COPYING.txt ├── Common │ ├── AMBE3000Thread.cpp │ ├── AMBE3000Thread.h │ ├── AMBEFileReader.cpp │ ├── AMBEFileReader.h │ ├── AMBEFileWriter.cpp │ ├── AMBEFileWriter.h │ ├── AddressTextCtrl.cpp │ ├── AddressTextCtrl.h │ ├── AudioCallback.h │ ├── BleepSet.cpp │ ├── BleepSet.h │ ├── Bleeper.cpp │ ├── Bleeper.h │ ├── CCITTChecksumReverse.cpp │ ├── CCITTChecksumReverse.h │ ├── CallsignSet.cpp │ ├── CallsignSet.h │ ├── CallsignTextCtrl.cpp │ ├── CallsignTextCtrl.h │ ├── Common.vcproj │ ├── DStarDefines.h │ ├── DV3000Controller.cpp │ ├── DV3000Controller.h │ ├── DVDongleController.cpp │ ├── DVDongleController.h │ ├── DVDongleThread.cpp │ ├── DVDongleThread.h │ ├── DVTOOLFileReader.cpp │ ├── DVTOOLFileReader.h │ ├── DVTOOLFileWriter.cpp │ ├── DVTOOLFileWriter.h │ ├── DecodeCallback.h │ ├── DongleSet.cpp │ ├── DongleSet.h │ ├── DongleThread.cpp │ ├── DongleThread.h │ ├── EncodeCallback.h │ ├── ErrorEvent.cpp │ ├── ErrorEvent.h │ ├── FIRFilter.cpp │ ├── FIRFilter.h │ ├── FileReader.cpp │ ├── FileReader.h │ ├── FileWriter.cpp │ ├── FileWriter.h │ ├── HeaderData.cpp │ ├── HeaderData.h │ ├── HeaderEvent.cpp │ ├── HeaderEvent.h │ ├── Logger.cpp │ ├── Logger.h │ ├── Makefile │ ├── MessageData.cpp │ ├── MessageData.h │ ├── MessageEvent.cpp │ ├── MessageEvent.h │ ├── MessageSet.cpp │ ├── MessageSet.h │ ├── MessageTextCtrl.cpp │ ├── MessageTextCtrl.h │ ├── PortTextCtrl.cpp │ ├── PortTextCtrl.h │ ├── RestrictedTextCtrl.cpp │ ├── RestrictedTextCtrl.h │ ├── RingBuffer.h │ ├── SerialDataController.cpp │ ├── SerialDataController.h │ ├── SlowDataDecoder.cpp │ ├── SlowDataDecoder.h │ ├── SlowDataEncoder.cpp │ ├── SlowDataEncoder.h │ ├── SoundCardReaderWriter.cpp │ ├── SoundCardReaderWriter.h │ ├── SoundcardSet.cpp │ ├── SoundcardSet.h │ ├── UDPReaderWriter.cpp │ ├── UDPReaderWriter.h │ ├── Utils.cpp │ ├── Utils.h │ ├── Version.h │ ├── WAVFileReader.cpp │ ├── WAVFileReader.h │ ├── WAVFileWriter.cpp │ └── WAVFileWriter.h ├── DVToolReader │ ├── DVToolReader.vcproj │ ├── DVToolReaderApp.cpp │ ├── DVToolReaderApp.h │ ├── DVToolReaderDefs.h │ ├── DVToolReaderFrame.cpp │ ├── DVToolReaderFrame.h │ ├── DVToolReaderPreferences.cpp │ ├── DVToolReaderPreferences.h │ ├── DVToolReaderThread.cpp │ ├── DVToolReaderThread.h │ └── Makefile ├── DVToolWriter │ ├── DVToolWriter.vcproj │ ├── DVToolWriterApp.cpp │ ├── DVToolWriterApp.h │ ├── DVToolWriterDefs.h │ ├── DVToolWriterFrame.cpp │ ├── DVToolWriterFrame.h │ ├── DVToolWriterPreferences.cpp │ ├── DVToolWriterPreferences.h │ ├── DVToolWriterThread.cpp │ ├── DVToolWriterThread.h │ └── Makefile ├── Makefile ├── ambe2wav │ ├── Makefile │ ├── ambe2wav.cpp │ ├── ambe2wav.h │ └── ambe2wav.vcproj ├── dvtool2wav │ ├── Makefile │ ├── dvtool2wav.cpp │ ├── dvtool2wav.h │ └── dvtool2wav.vcproj ├── package.mk ├── package_default.mk ├── settings.mk ├── settings_debian_amd64.mk ├── settings_debian_arm.mk ├── settings_debian_armel.mk ├── settings_debian_armhf.mk ├── settings_debian_i386.mk ├── settings_default.mk ├── settings_raspbian_armhf_pi.mk ├── settings_raspbian_armhf_pi2.mk ├── settings_rpi.mk ├── wav2ambe │ ├── Makefile │ ├── wav2ambe.cpp │ ├── wav2ambe.h │ └── wav2ambe.vcproj └── wav2dvtool │ ├── Makefile │ ├── wav2dvtool.cpp │ ├── wav2dvtool.h │ └── wav2dvtool.vcproj ├── AnalogueRepeater.nsi ├── AnalogueRepeater ├── .gitignore ├── AnalogueRepeater.sln ├── AnalogueRepeater │ ├── AnalogueRepeater.vcproj │ ├── AnalogueRepeaterAckSet.cpp │ ├── AnalogueRepeaterAckSet.h │ ├── AnalogueRepeaterApp.cpp │ ├── AnalogueRepeaterApp.h │ ├── AnalogueRepeaterCallsignSet.cpp │ ├── AnalogueRepeaterCallsignSet.h │ ├── AnalogueRepeaterConfig.cpp │ ├── AnalogueRepeaterConfig.h │ ├── AnalogueRepeaterControllerSet.cpp │ ├── AnalogueRepeaterControllerSet.h │ ├── AnalogueRepeaterD.cpp │ ├── AnalogueRepeaterD.h │ ├── AnalogueRepeaterDTMF1Set.cpp │ ├── AnalogueRepeaterDTMF1Set.h │ ├── AnalogueRepeaterDTMF2Set.cpp │ ├── AnalogueRepeaterDTMF2Set.h │ ├── AnalogueRepeaterDefs.h │ ├── AnalogueRepeaterExternalSet.cpp │ ├── AnalogueRepeaterExternalSet.h │ ├── AnalogueRepeaterFeelSet.cpp │ ├── AnalogueRepeaterFeelSet.h │ ├── AnalogueRepeaterFrame.cpp │ ├── AnalogueRepeaterFrame.h │ ├── AnalogueRepeaterLogger.cpp │ ├── AnalogueRepeaterLogger.h │ ├── AnalogueRepeaterPreferences.cpp │ ├── AnalogueRepeaterPreferences.h │ ├── AnalogueRepeaterRadioSet.cpp │ ├── AnalogueRepeaterRadioSet.h │ ├── AnalogueRepeaterStatusData.cpp │ ├── AnalogueRepeaterStatusData.h │ ├── AnalogueRepeaterThread.cpp │ ├── AnalogueRepeaterThread.h │ ├── AnalogueRepeaterThreadHelper.cpp │ ├── AnalogueRepeaterThreadHelper.h │ ├── AnalogueRepeaterTimesSet.cpp │ ├── AnalogueRepeaterTimesSet.h │ ├── AnalogueRepeaterTonesSet.cpp │ └── AnalogueRepeaterTonesSet.h ├── Arduino │ └── RepeaterControl │ │ └── RepeaterControl.ino ├── BUILD.txt ├── CHANGES.txt ├── COPYING.txt ├── Common │ ├── ActiveHangSet.cpp │ ├── ActiveHangSet.h │ ├── AddressTextCtrl.cpp │ ├── AddressTextCtrl.h │ ├── AnalogueDefines.h │ ├── ArduinoController.cpp │ ├── ArduinoController.h │ ├── AudioCallback.h │ ├── AudioDelay.cpp │ ├── AudioDelay.h │ ├── CWKeyer.cpp │ ├── CWKeyer.h │ ├── CWTextCtrl.cpp │ ├── CWTextCtrl.h │ ├── CallsignTextCtrl.cpp │ ├── CallsignTextCtrl.h │ ├── Common.vcproj │ ├── DTMFController.cpp │ ├── DTMFController.h │ ├── DTMFDecoder.cpp │ ├── DTMFDecoder.h │ ├── DTMFTextCtrl.cpp │ ├── DTMFTextCtrl.h │ ├── DummyController.cpp │ ├── DummyController.h │ ├── ExternalController.cpp │ ├── ExternalController.h │ ├── FIRFilter.cpp │ ├── FIRFilter.h │ ├── FirstOrderIIR.cpp │ ├── FirstOrderIIR.h │ ├── FixedAudioSource.cpp │ ├── FixedAudioSource.h │ ├── GPIOController.cpp │ ├── GPIOController.h │ ├── Goertzel.cpp │ ├── Goertzel.h │ ├── HardwareController.cpp │ ├── HardwareController.h │ ├── K8055Controller.cpp │ ├── K8055Controller.h │ ├── LogEvent.cpp │ ├── LogEvent.h │ ├── Logger.cpp │ ├── Logger.h │ ├── NCO.cpp │ ├── NCO.h │ ├── NetworkController.cpp │ ├── NetworkController.h │ ├── PTTDelay.cpp │ ├── PTTDelay.h │ ├── RestrictedTextCtrl.cpp │ ├── RestrictedTextCtrl.h │ ├── RingBuffer.h │ ├── SerialDataController.cpp │ ├── SerialDataController.h │ ├── SerialLineController.cpp │ ├── SerialLineController.h │ ├── SerialPortSelector.cpp │ ├── SerialPortSelector.h │ ├── SoundCardReaderWriter.cpp │ ├── SoundCardReaderWriter.h │ ├── TimeoutTones.cpp │ ├── TimeoutTones.h │ ├── Timer.cpp │ ├── Timer.h │ ├── Utils.cpp │ ├── Utils.h │ ├── VOGAD.cpp │ ├── VOGAD.h │ ├── Version.h │ ├── WAVFileReader.cpp │ ├── WAVFileReader.h │ ├── WAVFileStore.cpp │ └── WAVFileStore.h ├── LinuxUSB │ ├── README.txt │ └── rmk8055drv.c ├── Makefile.am ├── Makefile.in ├── aclocal.m4 ├── ar-lib ├── compile ├── configure ├── configure.ac ├── depcomp ├── install-sh └── missing ├── DStarRepeater.nsi ├── DStarRepeater ├── .gitignore ├── Arduino │ └── RepeaterControl │ │ └── RepeaterControl.ino ├── BUILD.txt ├── CHANGES.txt ├── COPYING ├── COPYING.txt ├── Common │ ├── AMBEFEC.cpp │ ├── AMBEFEC.h │ ├── AnnouncementCallback.h │ ├── AnnouncementUnit.cpp │ ├── AnnouncementUnit.h │ ├── ArduinoController.cpp │ ├── ArduinoController.h │ ├── AudioCallback.h │ ├── BeaconCallback.h │ ├── BeaconUnit.cpp │ ├── BeaconUnit.h │ ├── CCITTChecksum.cpp │ ├── CCITTChecksum.h │ ├── CCITTChecksumReverse.cpp │ ├── CCITTChecksumReverse.h │ ├── CallsignList.cpp │ ├── CallsignList.h │ ├── Common.vcproj │ ├── Common.vcxproj │ ├── Common.vcxproj.filters │ ├── DStarDefines.h │ ├── DStarGMSKDemodulator.cpp │ ├── DStarGMSKDemodulator.h │ ├── DStarGMSKModulator.cpp │ ├── DStarGMSKModulator.h │ ├── DStarRepeaterConfig.cpp │ ├── DStarRepeaterConfig.h │ ├── DStarScrambler.cpp │ ├── DStarScrambler.h │ ├── DVAPController.cpp │ ├── DVAPController.h │ ├── DVMegaController.cpp │ ├── DVMegaController.h │ ├── DVRPTRV1Controller.cpp │ ├── DVRPTRV1Controller.h │ ├── DVRPTRV2Controller.cpp │ ├── DVRPTRV2Controller.h │ ├── DVRPTRV3Controller.cpp │ ├── DVRPTRV3Controller.h │ ├── DVTOOLFileReader.cpp │ ├── DVTOOLFileReader.h │ ├── DVTOOLFileWriter.cpp │ ├── DVTOOLFileWriter.h │ ├── DummyController.cpp │ ├── DummyController.h │ ├── ExternalController.cpp │ ├── ExternalController.h │ ├── FIRFilter.cpp │ ├── FIRFilter.h │ ├── GMSKController.cpp │ ├── GMSKController.h │ ├── GMSKModem.cpp │ ├── GMSKModem.h │ ├── GMSKModemLibUsb.cpp │ ├── GMSKModemLibUsb.h │ ├── GMSKModemWinUSB.cpp │ ├── GMSKModemWinUSB.h │ ├── GPIOController.cpp │ ├── GPIOController.h │ ├── GatewayProtocolHandler.cpp │ ├── GatewayProtocolHandler.h │ ├── Golay.cpp │ ├── Golay.h │ ├── HardwareController.cpp │ ├── HardwareController.h │ ├── HeaderData.cpp │ ├── HeaderData.h │ ├── K8055Controller.cpp │ ├── K8055Controller.h │ ├── LogEvent.cpp │ ├── LogEvent.h │ ├── Logger.cpp │ ├── Logger.h │ ├── MMDVMController.cpp │ ├── MMDVMController.h │ ├── Modem.cpp │ ├── Modem.h │ ├── OutputQueue.cpp │ ├── OutputQueue.h │ ├── RepeaterProtocolHandler.cpp │ ├── RepeaterProtocolHandler.h │ ├── RingBuffer.h │ ├── SerialDataController.cpp │ ├── SerialDataController.h │ ├── SerialLineController.cpp │ ├── SerialLineController.h │ ├── SerialPortSelector.cpp │ ├── SerialPortSelector.h │ ├── SlowDataDecoder.cpp │ ├── SlowDataDecoder.h │ ├── SlowDataEncoder.cpp │ ├── SlowDataEncoder.h │ ├── SoundCardController.cpp │ ├── SoundCardController.h │ ├── SoundCardReaderWriter.cpp │ ├── SoundCardReaderWriter.h │ ├── SplitController.cpp │ ├── SplitController.h │ ├── TCPReaderWriter.cpp │ ├── TCPReaderWriter.h │ ├── Timer.cpp │ ├── Timer.h │ ├── UDPReaderWriter.cpp │ ├── UDPReaderWriter.h │ ├── UDRCController.cpp │ ├── UDRCController.h │ ├── URIUSBController.cpp │ ├── URIUSBController.h │ ├── Utils.cpp │ ├── Utils.h │ ├── Version.h │ └── lusb0_usb.h ├── DStarRepeater.sln ├── DStarRepeater │ ├── DStarRepeater.vcproj │ ├── DStarRepeater.vcxproj │ ├── DStarRepeater.vcxproj.filters │ ├── DStarRepeaterApp.cpp │ ├── DStarRepeaterApp.h │ ├── DStarRepeaterDefs.h │ ├── DStarRepeaterFrame.cpp │ ├── DStarRepeaterFrame.h │ ├── DStarRepeaterLogger.cpp │ ├── DStarRepeaterLogger.h │ ├── DStarRepeaterRXThread.cpp │ ├── DStarRepeaterRXThread.h │ ├── DStarRepeaterStatusData.cpp │ ├── DStarRepeaterStatusData.h │ ├── DStarRepeaterTRXThread.cpp │ ├── DStarRepeaterTRXThread.h │ ├── DStarRepeaterTXRXThread.cpp │ ├── DStarRepeaterTXRXThread.h │ ├── DStarRepeaterTXThread.cpp │ ├── DStarRepeaterTXThread.h │ ├── DStarRepeaterThread.cpp │ └── DStarRepeaterThread.h ├── DStarRepeaterConfig │ ├── DStarRepeaterConfig.vcproj │ ├── DStarRepeaterConfig.vcxproj │ ├── DStarRepeaterConfig.vcxproj.filters │ ├── DStarRepeaterConfigActiveHangSet.cpp │ ├── DStarRepeaterConfigActiveHangSet.h │ ├── DStarRepeaterConfigAnnouncementSet.cpp │ ├── DStarRepeaterConfigAnnouncementSet.h │ ├── DStarRepeaterConfigApp.cpp │ ├── DStarRepeaterConfigApp.h │ ├── DStarRepeaterConfigBeaconSet.cpp │ ├── DStarRepeaterConfigBeaconSet.h │ ├── DStarRepeaterConfigCallsignSet.cpp │ ├── DStarRepeaterConfigCallsignSet.h │ ├── DStarRepeaterConfigControl1Set.cpp │ ├── DStarRepeaterConfigControl1Set.h │ ├── DStarRepeaterConfigControl2Set.cpp │ ├── DStarRepeaterConfigControl2Set.h │ ├── DStarRepeaterConfigControllerSet.cpp │ ├── DStarRepeaterConfigControllerSet.h │ ├── DStarRepeaterConfigDVAPSet.cpp │ ├── DStarRepeaterConfigDVAPSet.h │ ├── DStarRepeaterConfigDVMegaSet.cpp │ ├── DStarRepeaterConfigDVMegaSet.h │ ├── DStarRepeaterConfigDVRPTR1Set.cpp │ ├── DStarRepeaterConfigDVRPTR1Set.h │ ├── DStarRepeaterConfigDVRPTR2Set.cpp │ ├── DStarRepeaterConfigDVRPTR2Set.h │ ├── DStarRepeaterConfigDVRPTR3Set.cpp │ ├── DStarRepeaterConfigDVRPTR3Set.h │ ├── DStarRepeaterConfigDefs.h │ ├── DStarRepeaterConfigFrame.cpp │ ├── DStarRepeaterConfigFrame.h │ ├── DStarRepeaterConfigGMSKSet.cpp │ ├── DStarRepeaterConfigGMSKSet.h │ ├── DStarRepeaterConfigMMDVMSet.cpp │ ├── DStarRepeaterConfigMMDVMSet.h │ ├── DStarRepeaterConfigModemSet.cpp │ ├── DStarRepeaterConfigModemSet.h │ ├── DStarRepeaterConfigNetworkSet.cpp │ ├── DStarRepeaterConfigNetworkSet.h │ ├── DStarRepeaterConfigSoundCardSet.cpp │ ├── DStarRepeaterConfigSoundCardSet.h │ ├── DStarRepeaterConfigSplitSet.cpp │ ├── DStarRepeaterConfigSplitSet.h │ ├── DStarRepeaterConfigTimesSet.cpp │ ├── DStarRepeaterConfigTimesSet.h │ └── Makefile ├── DStarRepeaterVS2015.sln ├── Data │ ├── Makefile │ ├── de_DE.ambe │ ├── de_DE.indx │ ├── dk_DK.ambe │ ├── dk_DK.indx │ ├── en_GB.ambe │ ├── en_GB.indx │ ├── en_US.ambe │ ├── en_US.indx │ ├── es_ES.ambe │ ├── es_ES.indx │ ├── fr_FR.ambe │ ├── fr_FR.indx │ ├── it_IT.ambe │ ├── it_IT.indx │ ├── no_NO.ambe │ ├── no_NO.indx │ ├── pl_PL.ambe │ ├── pl_PL.indx │ ├── se_SE.ambe │ └── se_SE.indx ├── GUICommon │ ├── AddressTextCtrl.cpp │ ├── AddressTextCtrl.h │ ├── CallsignTextCtrl.cpp │ ├── CallsignTextCtrl.h │ ├── GUICommon.vcproj │ ├── GUICommon.vcxproj │ ├── GUICommon.vcxproj.filters │ ├── MessageTextCtrl.cpp │ ├── MessageTextCtrl.h │ ├── PortTextCtrl.cpp │ ├── PortTextCtrl.h │ ├── RestrictedTextCtrl.cpp │ └── RestrictedTextCtrl.h ├── INSTALL ├── LinuxUSB │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── rmk8055drv.c │ └── rmuridrv.c ├── Makefile.am ├── Makefile.in ├── TODO.txt ├── WindowsUSB │ ├── dvrptr_cdc.inf │ ├── gmsk.cat │ ├── gmsk.inf │ └── xDVRPTR-32-64-2.inf ├── aclocal.m4 ├── ar-lib ├── compile ├── configure ├── configure.ac ├── debian │ ├── README.Debian │ ├── README.source │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── dstarrepeater-udev.postinst │ ├── dstarrepeater-udev.udev │ ├── dstarrepeater.install │ ├── dstarrepeater.logrotate │ ├── dstarrepeaterd.dstarrepeaterd@.service │ ├── dstarrepeaterd.examples │ ├── dstarrepeaterd.install │ ├── dstarrepeaterd.logrotate │ ├── opendv-usb-utils.install │ ├── rules │ └── source │ │ └── format ├── depcomp ├── install-sh ├── linux │ └── dstarrepeater_1.example └── missing ├── Digital Voice.nsi ├── Digital Voice ├── BUILD.txt ├── CHANGES.txt ├── COPYING.txt ├── Common │ ├── AudioCallback.h │ ├── AudioDelay.cpp │ ├── AudioDelay.h │ ├── BleepSet.cpp │ ├── BleepSet.h │ ├── Bleeper.cpp │ ├── Bleeper.h │ ├── BusyData.cpp │ ├── BusyData.h │ ├── BusyEvent.cpp │ ├── BusyEvent.h │ ├── CCITTChecksum.cpp │ ├── CCITTChecksum.h │ ├── CCITTChecksumReverse.cpp │ ├── CCITTChecksumReverse.h │ ├── CallsignTextCtrl.cpp │ ├── CallsignTextCtrl.h │ ├── Common.vcproj │ ├── DCSProtocolHandler.cpp │ ├── DCSProtocolHandler.h │ ├── DExtraProtocolHandler.cpp │ ├── DExtraProtocolHandler.h │ ├── DStarDefines.h │ ├── DStarFECDecoder.cpp │ ├── DStarFECDecoder.h │ ├── DStarFECEncoder.cpp │ ├── DStarFECEncoder.h │ ├── DStarGMSKDemodulator.cpp │ ├── DStarGMSKDemodulator.h │ ├── DStarGMSKModulator.cpp │ ├── DStarGMSKModulator.h │ ├── DStarInterleaver.cpp │ ├── DStarInterleaver.h │ ├── DStarScrambler.cpp │ ├── DStarScrambler.h │ ├── DVAPController.cpp │ ├── DVAPController.h │ ├── DVDongleController.cpp │ ├── DVDongleController.h │ ├── DVDongleSet.cpp │ ├── DVDongleSet.h │ ├── DVDongleThread.cpp │ ├── DVDongleThread.h │ ├── DVRPTRController.h │ ├── DVRPTRControllerV1.cpp │ ├── DVRPTRControllerV1.h │ ├── DVRPTRControllerV2.cpp │ ├── DVRPTRControllerV2.h │ ├── DVTOOLFileReader.cpp │ ├── DVTOOLFileReader.h │ ├── DVTOOLFileWriter.cpp │ ├── DVTOOLFileWriter.h │ ├── Demodulator.h │ ├── DummyController.cpp │ ├── DummyController.h │ ├── ErrorEvent.cpp │ ├── ErrorEvent.h │ ├── ExternalController.h │ ├── FECDecoder.h │ ├── FECEncoder.h │ ├── FIRFilter.cpp │ ├── FIRFilter.h │ ├── Filter.h │ ├── GMSKModem.h │ ├── GMSKModemLibUsb.cpp │ ├── GMSKModemLibUsb.h │ ├── GMSKModemWinUSB.cpp │ ├── GMSKModemWinUSB.h │ ├── HeaderData.cpp │ ├── HeaderData.h │ ├── HeaderEvent.cpp │ ├── HeaderEvent.h │ ├── Interleaver.h │ ├── InversionSet.cpp │ ├── InversionSet.h │ ├── K8055Controller.cpp │ ├── K8055Controller.h │ ├── LimitedLengthBuffer.cpp │ ├── LimitedLengthBuffer.h │ ├── LimitedPatternMatcher.cpp │ ├── LimitedPatternMatcher.h │ ├── Logger.cpp │ ├── Logger.h │ ├── Makefile │ ├── MessageData.cpp │ ├── MessageData.h │ ├── MessageEvent.cpp │ ├── MessageEvent.h │ ├── MessageSet.cpp │ ├── MessageSet.h │ ├── MessageTextCtrl.cpp │ ├── MessageTextCtrl.h │ ├── Modulator.h │ ├── PTTDelay.cpp │ ├── PTTDelay.h │ ├── PatternMatcher.cpp │ ├── PatternMatcher.h │ ├── RadioHeaderDecoder.cpp │ ├── RadioHeaderDecoder.h │ ├── RadioHeaderEncoder.cpp │ ├── RadioHeaderEncoder.h │ ├── RestrictedTextCtrl.cpp │ ├── RestrictedTextCtrl.h │ ├── RingBuffer.h │ ├── Scrambler.h │ ├── SerialController.cpp │ ├── SerialController.h │ ├── SerialDataController.cpp │ ├── SerialDataController.h │ ├── SlowDataDecoder.cpp │ ├── SlowDataDecoder.h │ ├── SlowDataEncoder.cpp │ ├── SlowDataEncoder.h │ ├── SoundCardReaderWriter.cpp │ ├── SoundCardReaderWriter.h │ ├── SoundcardSet.cpp │ ├── SoundcardSet.h │ ├── Timer.cpp │ ├── Timer.h │ ├── UDPReaderWriter.cpp │ ├── UDPReaderWriter.h │ ├── URIUSBController.cpp │ ├── URIUSBController.h │ ├── Utils.cpp │ ├── Utils.h │ ├── Version.h │ ├── WAVFileReader.cpp │ ├── WAVFileReader.h │ ├── WAVFileWriter.cpp │ ├── WAVFileWriter.h │ └── lusb0_usb.h ├── DCSClient │ ├── DCSClient.ico │ ├── DCSClient.rc │ ├── DCSClient.vcproj │ ├── DCSClient.xpm │ ├── DCSClientApp.cpp │ ├── DCSClientApp.h │ ├── DCSClientCallsignSet.cpp │ ├── DCSClientCallsignSet.h │ ├── DCSClientControllerSet.cpp │ ├── DCSClientControllerSet.h │ ├── DCSClientDefs.h │ ├── DCSClientFrame.cpp │ ├── DCSClientFrame.h │ ├── DCSClientHostFile.cpp │ ├── DCSClientHostFile.h │ ├── DCSClientPanel.cpp │ ├── DCSClientPanel.h │ ├── DCSClientPreferences.cpp │ ├── DCSClientPreferences.h │ ├── DCSClientReflectorSet.cpp │ ├── DCSClientReflectorSet.h │ ├── DCSClientThread.cpp │ ├── DCSClientThread.h │ ├── DCS_Hosts.txt │ └── Makefile ├── DExtraClient │ ├── DExtraClient.ico │ ├── DExtraClient.rc │ ├── DExtraClient.vcproj │ ├── DExtraClient.xpm │ ├── DExtraClientApp.cpp │ ├── DExtraClientApp.h │ ├── DExtraClientCallsignSet.cpp │ ├── DExtraClientCallsignSet.h │ ├── DExtraClientControllerSet.cpp │ ├── DExtraClientControllerSet.h │ ├── DExtraClientDefs.h │ ├── DExtraClientFrame.cpp │ ├── DExtraClientFrame.h │ ├── DExtraClientHostFile.cpp │ ├── DExtraClientHostFile.h │ ├── DExtraClientPanel.cpp │ ├── DExtraClientPanel.h │ ├── DExtraClientPreferences.cpp │ ├── DExtraClientPreferences.h │ ├── DExtraClientReflectorSet.cpp │ ├── DExtraClientReflectorSet.h │ ├── DExtraClientThread.cpp │ ├── DExtraClientThread.h │ ├── DExtra_Hosts.txt │ └── Makefile ├── DVAPClient │ ├── DVAPClient.ico │ ├── DVAPClient.rc │ ├── DVAPClient.vcproj │ ├── DVAPClient.xpm │ ├── DVAPClientApp.cpp │ ├── DVAPClientApp.h │ ├── DVAPClientCallsignSet.cpp │ ├── DVAPClientCallsignSet.h │ ├── DVAPClientDefs.h │ ├── DVAPClientFrame.cpp │ ├── DVAPClientFrame.h │ ├── DVAPClientModemSet.cpp │ ├── DVAPClientModemSet.h │ ├── DVAPClientPreferences.cpp │ ├── DVAPClientPreferences.h │ ├── DVAPClientThread.cpp │ ├── DVAPClientThread.h │ └── Makefile ├── DVRPTRClient │ ├── DVRPTRClient.ico │ ├── DVRPTRClient.rc │ ├── DVRPTRClient.vcproj │ ├── DVRPTRClient.xpm │ ├── DVRPTRClientApp.cpp │ ├── DVRPTRClientApp.h │ ├── DVRPTRClientCallsignSet.cpp │ ├── DVRPTRClientCallsignSet.h │ ├── DVRPTRClientDefs.h │ ├── DVRPTRClientFrame.cpp │ ├── DVRPTRClientFrame.h │ ├── DVRPTRClientModemSet.cpp │ ├── DVRPTRClientModemSet.h │ ├── DVRPTRClientPreferences.cpp │ ├── DVRPTRClientPreferences.h │ ├── DVRPTRClientThread.cpp │ ├── DVRPTRClientThread.h │ └── Makefile ├── DVToolReader │ ├── DVToolReader.ico │ ├── DVToolReader.rc │ ├── DVToolReader.vcproj │ ├── DVToolReader.xpm │ ├── DVToolReaderApp.cpp │ ├── DVToolReaderApp.h │ ├── DVToolReaderDefs.h │ ├── DVToolReaderFrame.cpp │ ├── DVToolReaderFrame.h │ ├── DVToolReaderPreferences.cpp │ ├── DVToolReaderPreferences.h │ ├── DVToolReaderThread.cpp │ ├── DVToolReaderThread.h │ ├── DVToolReaderUserSoundcardSet.cpp │ ├── DVToolReaderUserSoundcardSet.h │ └── Makefile ├── Digital Voice.sln ├── GMSKClient │ ├── GMSKClient.ico │ ├── GMSKClient.rc │ ├── GMSKClient.vcproj │ ├── GMSKClient.xpm │ ├── GMSKClientApp.cpp │ ├── GMSKClientApp.h │ ├── GMSKClientCallsignSet.cpp │ ├── GMSKClientCallsignSet.h │ ├── GMSKClientDefs.h │ ├── GMSKClientFrame.cpp │ ├── GMSKClientFrame.h │ ├── GMSKClientModemSet.cpp │ ├── GMSKClientModemSet.h │ ├── GMSKClientPreferences.cpp │ ├── GMSKClientPreferences.h │ ├── GMSKClientThread.cpp │ ├── GMSKClientThread.h │ └── Makefile ├── LinuxUSB │ ├── Makefile │ ├── README.txt │ ├── rmk8055drv.c │ └── rmuridrv.c ├── Makefile ├── SoundCardClient │ ├── Makefile │ ├── SoundCardClient.ico │ ├── SoundCardClient.rc │ ├── SoundCardClient.vcproj │ ├── SoundCardClient.xpm │ ├── SoundCardClientApp.cpp │ ├── SoundCardClientApp.h │ ├── SoundCardClientCallsignSet.cpp │ ├── SoundCardClientCallsignSet.h │ ├── SoundCardClientControllerSet.cpp │ ├── SoundCardClientControllerSet.h │ ├── SoundCardClientDefs.h │ ├── SoundCardClientFrame.cpp │ ├── SoundCardClientFrame.h │ ├── SoundCardClientPreferences.cpp │ ├── SoundCardClientPreferences.h │ ├── SoundCardClientThread.cpp │ └── SoundCardClientThread.h ├── USAGE.txt ├── WindowsUSB │ ├── dvrptr_cdc.inf │ ├── gmsk.cat │ ├── gmsk.inf │ └── xDVRPTR-32-64-2.inf ├── package.mk ├── package_default.mk ├── settings.mk ├── settings_debian_amd64.mk ├── settings_debian_arm.mk ├── settings_debian_armel.mk ├── settings_debian_armhf.mk ├── settings_debian_i386.mk ├── settings_default.mk ├── settings_raspbian_armhf_pi.mk ├── settings_raspbian_armhf_pi2.mk └── settings_rpi.mk ├── Documentation ├── AnalogueRepeater-DEB-instructions-ENG.pdf ├── AnalogueRepeater-YUM-instructions-ENG.pdf ├── D-Star Repeater-ENG.docx ├── D-Star Repeater-ENG.pdf ├── DD-Mode │ ├── How2Setup ircDDBGateway DD-Mode (for Admins EN).docx │ ├── How2Setup ircDDBGateway DD-Mode (for Admins EN).pdf │ ├── How2setup ircDDBGateway DD-Mode (Benutzer DEU).pdf │ ├── How2setup ircDDBGateway DD-Mode (Benutzer_DEU).docx │ ├── How2setup-DD-for-user-EN.pdf │ ├── How2setup-DD-for-user_EN.docx │ └── ddmode-samplefiles-dl5di.zip ├── Gateway-DEU.docx ├── Gateway-DEU.pdf ├── Gateway-ENG.docx ├── Gateway-ENG.pdf ├── Repeater-DEB-instructions-ENG.pdf ├── Repeater-ENG.docx ├── Repeater-ENG.pdf ├── Repeater-YUM-instructions-ENG.pdf ├── Setting Up the Split Mode-ENG.docx ├── Setting Up the Split Mode-ENG.pdf ├── ircDDBGateway-DEB-instructions-ENG.docx ├── ircDDBGateway-DEB-instructions-ENG.pdf ├── ircDDBGateway-YUM-Anleitung-DEU.docx ├── ircDDBGateway-YUM-Anleitung-DEU.pdf ├── ircDDBGateway-YUM-instructions-ENG.docx └── ircDDBGateway-YUM-instructions-ENG.pdf ├── DummyRepeater.nsi ├── DummyRepeater ├── .gitignore ├── Arduino │ └── RepeaterControl │ │ └── RepeaterControl.ino ├── BUILD.txt ├── CHANGES.txt ├── COPYING.txt ├── Common │ ├── AddressTextCtrl.cpp │ ├── AddressTextCtrl.h │ ├── ArduinoController.cpp │ ├── ArduinoController.h │ ├── AudioCallback.h │ ├── AudioDelay.cpp │ ├── Bleeper.cpp │ ├── Bleeper.h │ ├── CCITTChecksumReverse.cpp │ ├── CCITTChecksumReverse.h │ ├── CallsignTextCtrl.cpp │ ├── CallsignTextCtrl.h │ ├── Common.vcproj │ ├── Common.vcxproj │ ├── Common.vcxproj.filters │ ├── DStarDefines.h │ ├── DV3000Controller.cpp │ ├── DV3000Controller.h │ ├── DV3000NetworkController.cpp │ ├── DV3000NetworkController.h │ ├── DV3000SerialController.cpp │ ├── DV3000SerialController.h │ ├── DV3000Thread.cpp │ ├── DV3000Thread.h │ ├── DVDongleController.cpp │ ├── DVDongleController.h │ ├── DVDongleThread.cpp │ ├── DVDongleThread.h │ ├── DVMEGAAMBEController.cpp │ ├── DVMEGAAMBEController.h │ ├── DVMEGAAMBEThread.cpp │ ├── DVMEGAAMBEThread.h │ ├── DecodeCallback.h │ ├── DongleThread.cpp │ ├── DongleThread.h │ ├── DummyController.cpp │ ├── DummyController.h │ ├── EncodeCallback.h │ ├── ExternalController.cpp │ ├── ExternalController.h │ ├── FIRFilter.cpp │ ├── FIRFilter.h │ ├── GPIOController.cpp │ ├── GPIOController.h │ ├── HardwareController.cpp │ ├── HardwareController.h │ ├── HeaderData.cpp │ ├── HeaderData.h │ ├── K8055Controller.cpp │ ├── K8055Controller.h │ ├── Logger.cpp │ ├── Logger.h │ ├── MessageData.cpp │ ├── MessageData.h │ ├── MessageTextCtrl.cpp │ ├── MessageTextCtrl.h │ ├── PortTextCtrl.cpp │ ├── PortTextCtrl.h │ ├── RepeaterProtocolHandler.cpp │ ├── RepeaterProtocolHandler.h │ ├── RestrictedTextCtrl.cpp │ ├── RestrictedTextCtrl.h │ ├── RingBuffer.h │ ├── STARDVController.cpp │ ├── STARDVController.h │ ├── STARDVNetworkController.cpp │ ├── STARDVNetworkController.h │ ├── STARDVThread.cpp │ ├── STARDVThread.h │ ├── SerialDataController.cpp │ ├── SerialDataController.h │ ├── SerialLineController.cpp │ ├── SerialLineController.h │ ├── SerialPortSelector.cpp │ ├── SerialPortSelector.h │ ├── SlowDataDecoder.cpp │ ├── SlowDataDecoder.h │ ├── SlowDataEncoder.cpp │ ├── SlowDataEncoder.h │ ├── SoundCardReaderWriter.cpp │ ├── SoundCardReaderWriter.h │ ├── Timer.cpp │ ├── Timer.h │ ├── UDPReaderWriter.cpp │ ├── UDPReaderWriter.h │ ├── URIUSBController.cpp │ ├── URIUSBController.h │ ├── Utils.cpp │ ├── Utils.h │ └── Version.h ├── DV3000 │ ├── AMBEserver.c │ ├── AMBEtest2.py │ ├── AMBEtest3.py │ ├── README-dv3000d.txt │ ├── README.txt │ ├── ambesocktest.py │ ├── dv3000d-AMBEserver.pdf │ ├── dv3000d.c │ └── init.d │ │ ├── AMBEserver │ │ ├── AMBEserverGPIO │ │ └── dv3000d ├── DummyRepeater.sln ├── DummyRepeater │ ├── DummyRepeater.vcproj │ ├── DummyRepeater.vcxproj │ ├── DummyRepeater.vcxproj.filters │ ├── DummyRepeaterApp.cpp │ ├── DummyRepeaterApp.h │ ├── DummyRepeaterBleepSet.cpp │ ├── DummyRepeaterBleepSet.h │ ├── DummyRepeaterCallsignSet.cpp │ ├── DummyRepeaterCallsignSet.h │ ├── DummyRepeaterControllerSet.cpp │ ├── DummyRepeaterControllerSet.h │ ├── DummyRepeaterDefs.h │ ├── DummyRepeaterDongleSet.cpp │ ├── DummyRepeaterDongleSet.h │ ├── DummyRepeaterErrorEvent.cpp │ ├── DummyRepeaterErrorEvent.h │ ├── DummyRepeaterFrame.cpp │ ├── DummyRepeaterFrame.h │ ├── DummyRepeaterHeaderEvent.cpp │ ├── DummyRepeaterHeaderEvent.h │ ├── DummyRepeaterMessageEvent.cpp │ ├── DummyRepeaterMessageEvent.h │ ├── DummyRepeaterMessageSet.cpp │ ├── DummyRepeaterMessageSet.h │ ├── DummyRepeaterNetworkSet.cpp │ ├── DummyRepeaterNetworkSet.h │ ├── DummyRepeaterPreferences.cpp │ ├── DummyRepeaterPreferences.h │ ├── DummyRepeaterSlowDataEvent.cpp │ ├── DummyRepeaterSlowDataEvent.h │ ├── DummyRepeaterSoundcardSet.cpp │ ├── DummyRepeaterSoundcardSet.h │ ├── DummyRepeaterStatusEvent.cpp │ ├── DummyRepeaterStatusEvent.h │ ├── DummyRepeaterTXEvent.cpp │ ├── DummyRepeaterTXEvent.h │ ├── DummyRepeaterThread.cpp │ ├── DummyRepeaterThread.h │ ├── DummyRepeaterTimeoutSet.cpp │ └── DummyRepeaterTimeoutSet.h ├── DummyRepeaterVS2015.sln ├── LinuxUSB │ ├── README.txt │ ├── rmk8055drv.c │ └── rmuridrv.c ├── Makefile.am ├── Makefile.in ├── STARDV │ ├── README.TXT │ ├── WinTypes.h │ ├── dvemu.cpp │ ├── dvemu.h │ ├── ftd2xx.h │ ├── sdvtools.cpp │ └── sdvtools.h ├── aclocal.m4 ├── ar-lib ├── compile ├── configure ├── configure.ac ├── debian │ ├── ambeserver-ttyAMA0.conf │ ├── ambeserver-ttyS0.conf │ ├── ambeserver-ttyUSB0.conf │ ├── ambeserver.ambeserver@.service │ ├── ambeserver.install │ ├── ambeserver.postinst │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── dummyrepeater.install │ ├── rules │ └── source │ │ └── format ├── depcomp ├── install-sh └── missing ├── LICENSE ├── LinuxExtras ├── CHANGES.txt ├── CentOS │ ├── AnalogueRepeater │ │ ├── etc │ │ │ ├── init.d │ │ │ │ └── analoguerepeater │ │ │ └── sysconfig │ │ │ │ └── analoguerepeater │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ └── analoguerepeater.sh │ ├── DStarRepeater │ │ ├── dstarrepeater_conf.README │ │ ├── etc │ │ │ ├── default │ │ │ │ └── dstarrepeater.default │ │ │ ├── init.d │ │ │ │ ├── dstarrepeater_1 │ │ │ │ ├── dstarrepeater_2 │ │ │ │ ├── dstarrepeater_3 │ │ │ │ └── dstarrepeater_4 │ │ │ └── sysconfig │ │ │ │ ├── dstarrepeater_1 │ │ │ │ ├── dstarrepeater_2 │ │ │ │ ├── dstarrepeater_3 │ │ │ │ ├── dstarrepeater_4 │ │ │ │ └── dstarrepeater_conf │ │ └── usr │ │ │ ├── local │ │ │ └── bin │ │ │ │ ├── dstarrepeater_conf │ │ │ │ └── dstarrepeaterconfig.sh │ │ │ └── share │ │ │ └── dstarrepeater_conf │ │ │ ├── dstarrepeater_conf.0.hlp │ │ │ ├── dstarrepeater_conf.0.menu │ │ │ ├── dstarrepeater_conf.1.hlp │ │ │ ├── dstarrepeater_conf.1.menu │ │ │ └── languagecodes.txt │ ├── Repeater │ │ ├── etc │ │ │ ├── default │ │ │ │ └── repeater_conf │ │ │ ├── init.d │ │ │ │ ├── repeater_1 │ │ │ │ ├── repeater_2 │ │ │ │ ├── repeater_3 │ │ │ │ └── repeater_4 │ │ │ └── sysconfig │ │ │ │ ├── dstarrepeater │ │ │ │ ├── dvapnode │ │ │ │ ├── dvrptrrepeater │ │ │ │ ├── gmskrepeater │ │ │ │ ├── repeater_conf │ │ │ │ ├── soundcardrepeater │ │ │ │ └── splitrepeater │ │ ├── repeater_conf.README │ │ └── usr │ │ │ ├── local │ │ │ └── bin │ │ │ │ └── repeater_conf │ │ │ └── share │ │ │ └── repeater_conf │ │ │ ├── languagecodes.txt │ │ │ ├── repeater_conf.0.hlp │ │ │ ├── repeater_conf.0.menu │ │ │ ├── repeater_conf.1.hlp │ │ │ └── repeater_conf.1.menu │ ├── RepeaterExtras │ │ └── etc │ │ │ ├── init.d │ │ │ ├── dcsgateway │ │ │ ├── dextragateway │ │ │ └── parrotcontroller │ │ │ └── sysconfig │ │ │ ├── dcsgateway │ │ │ ├── dextragateway │ │ │ └── parrotcontroller │ ├── XReflector │ │ ├── etc │ │ │ ├── default │ │ │ │ ├── xreflector │ │ │ │ └── xreflector_conf │ │ │ ├── init.d │ │ │ │ └── xreflector │ │ │ └── sysconfig │ │ │ │ ├── xreflector │ │ │ │ └── xreflector_conf │ │ ├── usr │ │ │ ├── local │ │ │ │ └── bin │ │ │ │ │ ├── xreflector.sh │ │ │ │ │ └── xreflector_conf │ │ │ └── share │ │ │ │ └── xreflector_conf │ │ │ │ ├── languagecodes.txt │ │ │ │ ├── xreflector_conf.0.hlp │ │ │ │ ├── xreflector_conf.0.menu │ │ │ │ ├── xreflector_conf.1.hlp │ │ │ │ └── xreflector_conf.1.menu │ │ └── xreflector_conf.README │ └── ircDDBGateway │ │ ├── etc │ │ ├── default │ │ │ └── ircddbgateway │ │ ├── init.d │ │ │ ├── ircddbgateway │ │ │ └── timeserver │ │ ├── sysconfig │ │ │ ├── ircddbgateway │ │ │ ├── ircddbgw_conf │ │ │ └── timeserver │ │ └── yum.repos.d │ │ │ └── opendv.repo │ │ ├── ircddbgw_conf.README │ │ ├── root │ │ ├── CCS_Hosts.txt.sample │ │ ├── DCS_Hosts.txt.sample │ │ └── Gateway_Hosts.txt.sample │ │ ├── usr │ │ ├── local │ │ │ └── bin │ │ │ │ ├── dsgwd │ │ │ │ ├── ircddbgateway-ddmode.sh │ │ │ │ ├── ircddbgateway.sh │ │ │ │ ├── ircddbgatewayconfig.sh │ │ │ │ └── ircddbgw_conf │ │ └── share │ │ │ └── ircddbgw_conf │ │ │ ├── ircddbgw_conf.0.hlp │ │ │ ├── ircddbgw_conf.0.menu │ │ │ ├── ircddbgw_conf.1.hlp │ │ │ ├── ircddbgw_conf.1.menu │ │ │ └── languagecodes.txt │ │ └── var │ │ └── www │ │ └── html │ │ ├── css │ │ ├── ircDDBGateway.css │ │ └── ircddb.css │ │ ├── dashboard_stn.php │ │ ├── dhcpfunctions.php │ │ ├── dhcpleases.php │ │ ├── images │ │ ├── 20green.png │ │ └── 20red.png │ │ ├── ircddbgateway.php │ │ ├── ircddblocal.php.sample │ │ ├── nmap-mac-prefixes │ │ ├── opendv-1.hlp │ │ └── opendvconfig.php ├── Debian │ ├── AnalogueRepeater │ │ ├── etc │ │ │ ├── default │ │ │ │ └── analoguerepeater │ │ │ └── init.d │ │ │ │ └── analoguerepeater │ │ └── usr │ │ │ └── bin │ │ │ └── analoguerepeater.sh │ ├── DStarRepeater │ │ ├── dstarrepeater_conf.README │ │ ├── etc │ │ │ ├── default │ │ │ │ ├── dstarrepeater_1 │ │ │ │ ├── dstarrepeater_2 │ │ │ │ ├── dstarrepeater_3 │ │ │ │ └── dstarrepeater_4 │ │ │ └── init.d │ │ │ │ ├── dstarrepeater_1 │ │ │ │ ├── dstarrepeater_2 │ │ │ │ ├── dstarrepeater_3 │ │ │ │ └── dstarrepeater_4 │ │ ├── home │ │ │ ├── .svn │ │ │ │ └── entries │ │ │ └── opendv │ │ │ │ ├── .svn │ │ │ │ └── entries │ │ │ │ ├── data │ │ │ │ └── .svn │ │ │ │ │ └── entries │ │ │ │ └── dstarrepeater │ │ │ │ ├── .svn │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── dstarrepeater.default.svn-base │ │ │ │ │ └── dstarrepeater_conf.svn-base │ │ │ │ ├── data │ │ │ │ ├── .svn │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── dstarrepeater_conf.0.hlp.svn-base │ │ │ │ │ │ ├── dstarrepeater_conf.0.menu.svn-base │ │ │ │ │ │ ├── dstarrepeater_conf.1.hlp.svn-base │ │ │ │ │ │ ├── dstarrepeater_conf.1.menu.svn-base │ │ │ │ │ │ └── languagecodes.txt.svn-base │ │ │ │ ├── dstarrepeater_conf.0.hlp │ │ │ │ ├── dstarrepeater_conf.0.menu │ │ │ │ ├── dstarrepeater_conf.1.hlp │ │ │ │ ├── dstarrepeater_conf.1.menu │ │ │ │ └── languagecodes.txt │ │ │ │ ├── dstarrepeater.default │ │ │ │ └── dstarrepeater_conf │ │ └── usr │ │ │ └── bin │ │ │ └── dstarrepeater_conf │ ├── Repeater │ │ ├── etc │ │ │ ├── default │ │ │ │ ├── dvapnode │ │ │ │ ├── dvrptrrepeater │ │ │ │ ├── gmskrepeater │ │ │ │ └── soundcardrepeater │ │ │ └── init.d │ │ │ │ ├── repeater_1 │ │ │ │ ├── repeater_2 │ │ │ │ ├── repeater_3 │ │ │ │ └── repeater_4 │ │ ├── home │ │ │ └── opendv │ │ │ │ └── repeater │ │ │ │ ├── data │ │ │ │ ├── languagecodes.txt │ │ │ │ ├── repeater_conf.0.hlp │ │ │ │ ├── repeater_conf.0.menu │ │ │ │ ├── repeater_conf.1.hlp │ │ │ │ └── repeater_conf.1.menu │ │ │ │ ├── repeater.default │ │ │ │ └── repeater_conf │ │ ├── repeater_conf.README │ │ └── usr │ │ │ └── bin │ │ │ ├── convert_defaults.sh │ │ │ └── repeater_conf │ ├── RepeaterExtras │ │ └── etc │ │ │ ├── default │ │ │ ├── dcsgateway │ │ │ ├── dextragateway │ │ │ └── parrotcontroller │ │ │ └── init.d │ │ │ ├── dcsgateway │ │ │ ├── dextragateway │ │ │ └── parrotcontroller │ ├── XReflector │ │ ├── etc │ │ │ ├── default │ │ │ │ └── xreflector │ │ │ └── init.d │ │ │ │ └── xreflector │ │ ├── home │ │ │ └── opendv │ │ │ │ └── xreflector │ │ │ │ ├── data │ │ │ │ ├── languagecodes.txt │ │ │ │ ├── xreflector_conf.0.hlp │ │ │ │ ├── xreflector_conf.0.menu │ │ │ │ ├── xreflector_conf.1.hlp │ │ │ │ └── xreflector_conf.1.menu │ │ │ │ ├── xreflector.default │ │ │ │ └── xreflector_conf │ │ └── usr │ │ │ └── bin │ │ │ ├── xreflector.sh │ │ │ └── xreflector_conf │ └── ircDDBGateway │ │ ├── etc │ │ ├── apt │ │ │ └── sources.list.d │ │ │ │ └── opendv.list │ │ ├── default │ │ │ ├── ircddbgateway │ │ │ └── timeserver │ │ └── init.d │ │ │ ├── ircddbgateway │ │ │ └── timeserver │ │ ├── home │ │ └── opendv │ │ │ ├── CCS_Hosts.txt.sample │ │ │ ├── DCS_Hosts.txt.sample │ │ │ ├── Gateway_Hosts.txt.sample │ │ │ └── ircddbgateway │ │ │ ├── data │ │ │ ├── .svn │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── ircddbgw_conf.0.hlp.svn-base │ │ │ │ │ ├── ircddbgw_conf.0.menu.svn-base │ │ │ │ │ ├── ircddbgw_conf.1.hlp.svn-base │ │ │ │ │ ├── ircddbgw_conf.1.menu.svn-base │ │ │ │ │ └── languagecodes.txt.svn-base │ │ │ ├── ircddbgw_conf.0.hlp │ │ │ ├── ircddbgw_conf.0.menu │ │ │ ├── ircddbgw_conf.1.hlp │ │ │ ├── ircddbgw_conf.1.menu │ │ │ └── languagecodes.txt │ │ │ ├── ircddbgateway.default │ │ │ └── ircddbgw_conf │ │ ├── ircddbgw_conf.README │ │ ├── usr │ │ └── bin │ │ │ ├── ircddbgateway-ddmode.sh │ │ │ ├── ircddbgateway.sh │ │ │ └── ircddbgw_conf │ │ └── var │ │ └── www │ │ ├── css │ │ ├── ircDDBGateway.css │ │ └── ircddb.css │ │ ├── dashboard_stn.php │ │ ├── dhcpfunctions.php │ │ ├── dhcpleases.php │ │ ├── images │ │ ├── 20green.png │ │ └── 20red.png │ │ ├── ircddbgateway.php │ │ ├── ircddblocal.php.sample │ │ ├── nmap-mac-prefixes │ │ ├── opendv-1.hlp │ │ └── opendvconfig.php ├── KNOWN_ISSUES.txt ├── Raspbian │ ├── AnalogueRepeater │ │ ├── etc │ │ │ ├── default │ │ │ │ └── analoguerepeater │ │ │ └── init.d │ │ │ │ └── analoguerepeater │ │ └── usr │ │ │ └── bin │ │ │ └── analoguerepeater.sh │ ├── DStarRepeater │ │ ├── dstarrepeater_conf.README │ │ ├── etc │ │ │ ├── default │ │ │ │ ├── dstarrepeater_1 │ │ │ │ ├── dstarrepeater_2 │ │ │ │ ├── dstarrepeater_3 │ │ │ │ └── dstarrepeater_4 │ │ │ └── init.d │ │ │ │ ├── dstarrepeater_1 │ │ │ │ ├── dstarrepeater_2 │ │ │ │ ├── dstarrepeater_3 │ │ │ │ └── dstarrepeater_4 │ │ ├── home │ │ │ └── opendv │ │ │ │ └── dstarrepeater │ │ │ │ ├── data │ │ │ │ ├── dstarrepeater_conf.0.hlp │ │ │ │ ├── dstarrepeater_conf.0.menu │ │ │ │ ├── dstarrepeater_conf.1.hlp │ │ │ │ ├── dstarrepeater_conf.1.menu │ │ │ │ └── languagecodes.txt │ │ │ │ ├── dstarrepeater.default │ │ │ │ └── dstarrepeater_conf │ │ └── usr │ │ │ └── bin │ │ │ └── dstarrepeater_conf │ ├── Repeater │ │ ├── etc │ │ │ ├── default │ │ │ │ ├── dvapnode │ │ │ │ ├── dvrptrrepeater │ │ │ │ ├── gmskrepeater │ │ │ │ └── soundcardrepeater │ │ │ └── init.d │ │ │ │ ├── repeater_1 │ │ │ │ ├── repeater_2 │ │ │ │ ├── repeater_3 │ │ │ │ └── repeater_4 │ │ ├── home │ │ │ └── opendv │ │ │ │ └── repeater │ │ │ │ ├── data │ │ │ │ ├── languagecodes.txt │ │ │ │ ├── repeater_conf.0.hlp │ │ │ │ ├── repeater_conf.0.menu │ │ │ │ ├── repeater_conf.1.hlp │ │ │ │ └── repeater_conf.1.menu │ │ │ │ ├── repeater.default │ │ │ │ └── repeater_conf │ │ ├── repeater_conf.README │ │ └── usr │ │ │ ├── bin │ │ │ ├── convert_defaults.sh │ │ │ └── repeater_conf │ │ │ └── include │ │ │ └── bcm2835.h │ ├── RepeaterExtras │ │ └── etc │ │ │ └── init.d │ │ │ ├── dcsgateway │ │ │ ├── dextragateway │ │ │ └── parrotcontroller │ ├── XReflector │ │ ├── etc │ │ │ ├── default │ │ │ │ └── xreflector │ │ │ └── init.d │ │ │ │ └── xreflector │ │ ├── home │ │ │ └── opendv │ │ │ │ └── xreflector │ │ │ │ ├── data │ │ │ │ ├── languagecodes.txt │ │ │ │ ├── xreflector_conf.0.hlp │ │ │ │ ├── xreflector_conf.0.menu │ │ │ │ ├── xreflector_conf.1.hlp │ │ │ │ └── xreflector_conf.1.menu │ │ │ │ ├── xreflector.default │ │ │ │ └── xreflector_conf │ │ └── usr │ │ │ └── bin │ │ │ ├── xreflector.sh │ │ │ └── xreflector_conf │ └── ircDDBGateway │ │ ├── etc │ │ ├── apt │ │ │ └── sources.list.d │ │ │ │ └── opendv.list │ │ ├── default │ │ │ ├── ircddbgateway │ │ │ └── timeserver │ │ └── init.d │ │ │ ├── ircddbgateway │ │ │ └── timeserver │ │ ├── home │ │ └── opendv │ │ │ ├── CCS_Hosts.txt.sample │ │ │ ├── DCS_Hosts.txt.sample │ │ │ ├── Gateway_Hosts.txt.sample │ │ │ └── ircddbgateway │ │ │ ├── data │ │ │ ├── ircddbgw_conf.0.hlp │ │ │ ├── ircddbgw_conf.0.menu │ │ │ ├── ircddbgw_conf.1.hlp │ │ │ ├── ircddbgw_conf.1.menu │ │ │ └── languagecodes.txt │ │ │ ├── ircddbgateway.default │ │ │ └── ircddbgw_conf │ │ ├── ircddbgw_conf.README │ │ ├── usr │ │ └── bin │ │ │ ├── ircddbgateway-ddmode.sh │ │ │ ├── ircddbgateway.sh │ │ │ └── ircddbgw_conf │ │ └── var │ │ └── www │ │ ├── css │ │ ├── ircDDBGateway.css │ │ └── ircddb.css │ │ ├── dashboard_stn.php │ │ ├── dhcpfunctions.php │ │ ├── dhcpleases.php │ │ ├── images │ │ ├── 20green.png │ │ └── 20red.png │ │ ├── ircddbgateway.php │ │ ├── ircddblocal.php.sample │ │ ├── nmap-mac-prefixes │ │ ├── opendv-1.hlp │ │ └── opendvconfig.php └── TODOS.txt ├── README.md ├── RepeaterExtras.nsi ├── RepeaterExtras ├── BUILD.txt ├── CHANGES.txt ├── COPYING.txt ├── Common │ ├── AddressTextCtrl.cpp │ ├── AddressTextCtrl.h │ ├── CCITTChecksumReverse.cpp │ ├── CCITTChecksumReverse.h │ ├── CallsignTextCtrl.cpp │ ├── CallsignTextCtrl.h │ ├── Common.vcproj │ ├── DStarDefines.h │ ├── DVTOOLFileReader.cpp │ ├── DVTOOLFileReader.h │ ├── DVTOOLFileWriter.cpp │ ├── DVTOOLFileWriter.h │ ├── HeaderData.cpp │ ├── HeaderData.h │ ├── Logger.cpp │ ├── Logger.h │ ├── Makefile │ ├── PortTextCtrl.cpp │ ├── PortTextCtrl.h │ ├── RestrictedTextCtrl.cpp │ ├── RestrictedTextCtrl.h │ ├── SlowDataEncoder.cpp │ ├── SlowDataEncoder.h │ ├── Timer.cpp │ ├── Timer.h │ ├── UDPReaderWriter.cpp │ ├── UDPReaderWriter.h │ ├── Utils.cpp │ ├── Utils.h │ └── Version.h ├── DCSGateway │ ├── DCSGateway.vcproj │ ├── DCSGatewayAMBEData.cpp │ ├── DCSGatewayAMBEData.h │ ├── DCSGatewayApp.cpp │ ├── DCSGatewayApp.h │ ├── DCSGatewayAudioUnit.cpp │ ├── DCSGatewayAudioUnit.h │ ├── DCSGatewayCallback.h │ ├── DCSGatewayConfig.cpp │ ├── DCSGatewayConfig.h │ ├── DCSGatewayD.cpp │ ├── DCSGatewayD.h │ ├── DCSGatewayDCSProtocolHandler.cpp │ ├── DCSGatewayDCSProtocolHandler.h │ ├── DCSGatewayDefs.h │ ├── DCSGatewayEchoUnit.cpp │ ├── DCSGatewayEchoUnit.h │ ├── DCSGatewayFrame.cpp │ ├── DCSGatewayFrame.h │ ├── DCSGatewayHeaderData.cpp │ ├── DCSGatewayHeaderData.h │ ├── DCSGatewayHostFile.cpp │ ├── DCSGatewayHostFile.h │ ├── DCSGatewayPreferences.cpp │ ├── DCSGatewayPreferences.h │ ├── DCSGatewayReflectorSet.cpp │ ├── DCSGatewayReflectorSet.h │ ├── DCSGatewayRepeaterProtocolHandler.cpp │ ├── DCSGatewayRepeaterProtocolHandler.h │ ├── DCSGatewayRepeaterSet.cpp │ ├── DCSGatewayRepeaterSet.h │ ├── DCSGatewayStatusData.cpp │ ├── DCSGatewayStatusData.h │ ├── DCSGatewayTextCollector.cpp │ ├── DCSGatewayTextCollector.h │ ├── DCSGatewayThread.cpp │ ├── DCSGatewayThread.h │ └── Makefile ├── DExtraGateway │ ├── DExtraGateway.vcproj │ ├── DExtraGatewayAMBEData.cpp │ ├── DExtraGatewayAMBEData.h │ ├── DExtraGatewayApp.cpp │ ├── DExtraGatewayApp.h │ ├── DExtraGatewayAudioUnit.cpp │ ├── DExtraGatewayAudioUnit.h │ ├── DExtraGatewayCallback.h │ ├── DExtraGatewayConfig.cpp │ ├── DExtraGatewayConfig.h │ ├── DExtraGatewayD.cpp │ ├── DExtraGatewayD.h │ ├── DExtraGatewayDExtraProtocolHandler.cpp │ ├── DExtraGatewayDExtraProtocolHandler.h │ ├── DExtraGatewayDefs.h │ ├── DExtraGatewayEchoUnit.cpp │ ├── DExtraGatewayEchoUnit.h │ ├── DExtraGatewayFrame.cpp │ ├── DExtraGatewayFrame.h │ ├── DExtraGatewayHeaderData.cpp │ ├── DExtraGatewayHeaderData.h │ ├── DExtraGatewayHostFile.cpp │ ├── DExtraGatewayHostFile.h │ ├── DExtraGatewayPreferences.cpp │ ├── DExtraGatewayPreferences.h │ ├── DExtraGatewayReflectorSet.cpp │ ├── DExtraGatewayReflectorSet.h │ ├── DExtraGatewayRepeaterProtocolHandler.cpp │ ├── DExtraGatewayRepeaterProtocolHandler.h │ ├── DExtraGatewayRepeaterSet.cpp │ ├── DExtraGatewayRepeaterSet.h │ ├── DExtraGatewayStatusData.cpp │ ├── DExtraGatewayStatusData.h │ ├── DExtraGatewayThread.cpp │ ├── DExtraGatewayThread.h │ └── Makefile ├── Data │ ├── DCS_Hosts.txt │ ├── DExtra_Hosts.txt │ ├── Makefile │ ├── de_DE.ambe │ ├── de_DE.indx │ ├── dk_DK.ambe │ ├── dk_DK.indx │ ├── en_GB.ambe │ ├── en_GB.indx │ ├── en_US.ambe │ ├── en_US.indx │ ├── es_ES.ambe │ ├── es_ES.indx │ ├── fr_FR.ambe │ ├── fr_FR.indx │ ├── it_IT.ambe │ ├── it_IT.indx │ ├── no_NO.ambe │ ├── no_NO.indx │ ├── pl_PL.ambe │ ├── pl_PL.indx │ ├── se_SE.ambe │ └── se_SE.indx ├── Makefile ├── ParrotController │ ├── Makefile │ ├── ParrotController.vcproj │ ├── ParrotControllerApp.cpp │ ├── ParrotControllerApp.h │ ├── ParrotControllerBeaconSet.cpp │ ├── ParrotControllerBeaconSet.h │ ├── ParrotControllerConfig.cpp │ ├── ParrotControllerConfig.h │ ├── ParrotControllerD.cpp │ ├── ParrotControllerD.h │ ├── ParrotControllerDefs.h │ ├── ParrotControllerFrame.cpp │ ├── ParrotControllerFrame.h │ ├── ParrotControllerModeSet.cpp │ ├── ParrotControllerModeSet.h │ ├── ParrotControllerNetworkSet.cpp │ ├── ParrotControllerNetworkSet.h │ ├── ParrotControllerParrotSet.cpp │ ├── ParrotControllerParrotSet.h │ ├── ParrotControllerPreferences.cpp │ ├── ParrotControllerPreferences.h │ ├── ParrotControllerProtocolHandler.cpp │ ├── ParrotControllerProtocolHandler.h │ ├── ParrotControllerStatusData.cpp │ ├── ParrotControllerStatusData.h │ ├── ParrotControllerThread.cpp │ ├── ParrotControllerThread.h │ ├── ParrotControllerThreadHelper.cpp │ └── ParrotControllerThreadHelper.h ├── RepeaterExtras.sln ├── package.mk ├── package_default.mk ├── settings.mk ├── settings_cubieboard_linaro_native.mk ├── settings_debian_amd64.mk ├── settings_debian_arm.mk ├── settings_debian_armel.mk ├── settings_debian_armhf.mk ├── settings_debian_i386.mk ├── settings_default.mk ├── settings_raspbian_armhf_pi.mk ├── settings_raspbian_armhf_pi2.mk └── settings_rpi.mk ├── XReflector.nsi ├── XReflector ├── .gitignore ├── BUILD.txt ├── CHANGES.txt ├── COPYING.txt ├── Common │ ├── AMBEData.cpp │ ├── AMBEData.h │ ├── APRSCollector.cpp │ ├── APRSCollector.h │ ├── APRSWriter.cpp │ ├── APRSWriter.h │ ├── APRSWriterThread.cpp │ ├── APRSWriterThread.h │ ├── AddressTextCtrl.cpp │ ├── AddressTextCtrl.h │ ├── AudioUnit.cpp │ ├── AudioUnit.h │ ├── CCITTChecksum.cpp │ ├── CCITTChecksum.h │ ├── CCSHandler.cpp │ ├── CCSHandler.h │ ├── CCSProtocolHandler.cpp │ ├── CCSProtocolHandler.h │ ├── CacheManager.cpp │ ├── CacheManager.h │ ├── CallsignServer.cpp │ ├── CallsignServer.h │ ├── CallsignTextCtrl.cpp │ ├── CallsignTextCtrl.h │ ├── Checksum.h │ ├── Common.vcproj │ ├── ConnectData.cpp │ ├── ConnectData.h │ ├── DCSHandler.cpp │ ├── DCSHandler.h │ ├── DCSProtocolHandler.cpp │ ├── DCSProtocolHandler.h │ ├── DCSProtocolHandlerPool.cpp │ ├── DCSProtocolHandlerPool.h │ ├── DCSSet.cpp │ ├── DCSSet.h │ ├── DDData.cpp │ ├── DDData.h │ ├── DDHandler.cpp │ ├── DDHandler.h │ ├── DExtraHandler.cpp │ ├── DExtraHandler.h │ ├── DExtraProtocolHandler.cpp │ ├── DExtraProtocolHandler.h │ ├── DExtraSet.cpp │ ├── DExtraSet.h │ ├── DPRSSet.cpp │ ├── DPRSSet.h │ ├── DPlusAuthenticator.cpp │ ├── DPlusAuthenticator.h │ ├── DPlusHandler.cpp │ ├── DPlusHandler.h │ ├── DPlusProtocolHandler.cpp │ ├── DPlusProtocolHandler.h │ ├── DPlusProtocolHandlerPool.cpp │ ├── DPlusProtocolHandlerPool.h │ ├── DPlusSet.cpp │ ├── DPlusSet.h │ ├── DRATSServer.cpp │ ├── DRATSServer.h │ ├── DStarDefines.h │ ├── DTMF.cpp │ ├── DTMF.h │ ├── Defs.h │ ├── DummyRepeaterProtocolHandler.cpp │ ├── DummyRepeaterProtocolHandler.h │ ├── EchoUnit.cpp │ ├── EchoUnit.h │ ├── G2Handler.cpp │ ├── G2Handler.h │ ├── G2ProtocolHandler.cpp │ ├── G2ProtocolHandler.h │ ├── GatewayCache.cpp │ ├── GatewayCache.h │ ├── HBRepeaterProtocolHandler.cpp │ ├── HBRepeaterProtocolHandler.h │ ├── HeaderData.cpp │ ├── HeaderData.h │ ├── HeaderLogger.cpp │ ├── HeaderLogger.h │ ├── HeardData.cpp │ ├── HeardData.h │ ├── HostFile.cpp │ ├── HostFile.h │ ├── IcomRepeaterProtocolHandler.cpp │ ├── IcomRepeaterProtocolHandler.h │ ├── LogEvent.cpp │ ├── LogEvent.h │ ├── Logger.cpp │ ├── Logger.h │ ├── PollData.cpp │ ├── PollData.h │ ├── PortTextCtrl.cpp │ ├── PortTextCtrl.h │ ├── ReflectorCallback.h │ ├── RemoteHandler.cpp │ ├── RemoteHandler.h │ ├── RemoteLinkData.cpp │ ├── RemoteLinkData.h │ ├── RemoteProtocolHandler.cpp │ ├── RemoteProtocolHandler.h │ ├── RemoteReflectorData.cpp │ ├── RemoteReflectorData.h │ ├── RemoteRepeaterData.cpp │ ├── RemoteRepeaterData.h │ ├── RemoteSet.cpp │ ├── RemoteSet.h │ ├── RemoteStarNetGroup.cpp │ ├── RemoteStarNetGroup.h │ ├── RemoteStarNetUser.cpp │ ├── RemoteStarNetUser.h │ ├── RepeaterCache.cpp │ ├── RepeaterCache.h │ ├── RepeaterCallback.h │ ├── RepeaterDataSet.cpp │ ├── RepeaterDataSet.h │ ├── RepeaterHandler.cpp │ ├── RepeaterHandler.h │ ├── RepeaterInfoSet.cpp │ ├── RepeaterInfoSet.h │ ├── RepeaterProtocolHandler.h │ ├── RestrictedTextCtrl.cpp │ ├── RestrictedTextCtrl.h │ ├── RingBuffer.h │ ├── SHA256.cpp │ ├── SHA256.h │ ├── SlowDataEncoder.cpp │ ├── SlowDataEncoder.h │ ├── StarNetHandler.cpp │ ├── StarNetHandler.h │ ├── StarNetSet.cpp │ ├── StarNetSet.h │ ├── StatusData.cpp │ ├── StatusData.h │ ├── TCPReaderWriterClient.cpp │ ├── TCPReaderWriterClient.h │ ├── TCPReaderWriterServer.cpp │ ├── TCPReaderWriterServer.h │ ├── TextCollector.cpp │ ├── TextCollector.h │ ├── TextData.cpp │ ├── TextData.h │ ├── Timer.cpp │ ├── Timer.h │ ├── UDPReaderWriter.cpp │ ├── UDPReaderWriter.h │ ├── UserCache.cpp │ ├── UserCache.h │ ├── Utils.cpp │ ├── Utils.h │ ├── Version.h │ ├── VersionUnit.cpp │ └── VersionUnit.h ├── DExtraBridge │ ├── DExtraClient.ico │ ├── DExtraClient.rc │ ├── DExtraClient.vcproj │ ├── DExtraClient.xpm │ ├── DExtraClientApp.cpp │ ├── DExtraClientApp.h │ ├── DExtraClientCallsignSet.cpp │ ├── DExtraClientCallsignSet.h │ ├── DExtraClientControllerSet.cpp │ ├── DExtraClientControllerSet.h │ ├── DExtraClientDefs.h │ ├── DExtraClientFrame.cpp │ ├── DExtraClientFrame.h │ ├── DExtraClientHostFile.cpp │ ├── DExtraClientHostFile.h │ ├── DExtraClientPanel.cpp │ ├── DExtraClientPanel.h │ ├── DExtraClientPreferences.cpp │ ├── DExtraClientPreferences.h │ ├── DExtraClientReflectorSet.cpp │ ├── DExtraClientReflectorSet.h │ ├── DExtraClientThread.cpp │ ├── DExtraClientThread.h │ └── DExtra_Hosts.txt ├── Data │ ├── DCS_Hosts.txt │ ├── DExtra_Hosts.txt │ ├── de_DE.ambe │ ├── de_DE.indx │ ├── dk_DK.ambe │ ├── dk_DK.indx │ ├── en_GB.ambe │ ├── en_GB.indx │ ├── en_US.ambe │ ├── en_US.indx │ ├── es_ES.ambe │ ├── es_ES.indx │ ├── fr_FR.ambe │ ├── fr_FR.indx │ ├── it_IT.ambe │ ├── it_IT.indx │ ├── no_NO.ambe │ ├── no_NO.indx │ ├── pl_PL.ambe │ ├── pl_PL.indx │ ├── se_SE.ambe │ └── se_SE.indx ├── Makefile.am ├── Makefile.in ├── XRFRemote │ ├── RemoteControl.vcproj │ ├── RemoteControlApp.cpp │ ├── RemoteControlApp.h │ ├── RemoteControlCallsignData.cpp │ ├── RemoteControlCallsignData.h │ ├── RemoteControlConfig.cpp │ ├── RemoteControlConfig.h │ ├── RemoteControlDefs.h │ ├── RemoteControlFrame.cpp │ ├── RemoteControlFrame.h │ ├── RemoteControlLinkData.cpp │ ├── RemoteControlLinkData.h │ ├── RemoteControlPreferences.cpp │ ├── RemoteControlPreferences.h │ ├── RemoteControlRemoteControlHandler.cpp │ ├── RemoteControlRemoteControlHandler.h │ ├── RemoteControlRemoteSet.cpp │ ├── RemoteControlRemoteSet.h │ ├── RemoteControlRepeaterData.cpp │ ├── RemoteControlRepeaterData.h │ ├── RemoteControlRepeaterPanel.cpp │ ├── RemoteControlRepeaterPanel.h │ ├── RemoteControlStarNetGroup.cpp │ ├── RemoteControlStarNetGroup.h │ ├── RemoteControlStarNetPanel.cpp │ ├── RemoteControlStarNetPanel.h │ ├── RemoteControlStarNetUser.cpp │ └── RemoteControlStarNetUser.h ├── XReflector.sln ├── XReflector │ ├── XReflector.vcproj │ ├── XReflectorApp.cpp │ ├── XReflectorApp.h │ ├── XReflectorAppD.cpp │ ├── XReflectorAppD.h │ ├── XReflectorConfig.cpp │ ├── XReflectorConfig.h │ ├── XReflectorDExtraHandler.cpp │ ├── XReflectorDExtraHandler.h │ ├── XReflectorDPlusHandler.cpp │ ├── XReflectorDPlusHandler.h │ ├── XReflectorDPlusSet.cpp │ ├── XReflectorDPlusSet.h │ ├── XReflectorDefs.h │ ├── XReflectorFrame.cpp │ ├── XReflectorFrame.h │ ├── XReflectorLogRedirect.cpp │ ├── XReflectorLogRedirect.h │ ├── XReflectorMiscellaneousSet.cpp │ ├── XReflectorMiscellaneousSet.h │ ├── XReflectorPreferences.cpp │ ├── XReflectorPreferences.h │ ├── XReflectorReflectorCallback.h │ ├── XReflectorReflectorHandler.cpp │ ├── XReflectorReflectorHandler.h │ ├── XReflectorReflectorSet.cpp │ ├── XReflectorReflectorSet.h │ ├── XReflectorThread.cpp │ ├── XReflectorThread.h │ ├── XReflectorThreadHelper.cpp │ ├── XReflectorThreadHelper.h │ ├── XReflectorUserLog.cpp │ └── XReflectorUserLog.h ├── aclocal.m4 ├── ar-lib ├── compile ├── configure ├── configure.ac ├── depcomp ├── install-sh ├── ircDDB │ ├── IRCApplication.h │ ├── IRCClient.cpp │ ├── IRCClient.h │ ├── IRCDDB.cpp │ ├── IRCDDB.h │ ├── IRCDDBApp.cpp │ ├── IRCDDBApp.h │ ├── IRCMessage.cpp │ ├── IRCMessage.h │ ├── IRCMessageQueue.cpp │ ├── IRCMessageQueue.h │ ├── IRCProtocol.cpp │ ├── IRCProtocol.h │ ├── IRCReceiver.cpp │ ├── IRCReceiver.h │ ├── IRCutils.cpp │ ├── IRCutils.h │ ├── LICENSE │ ├── README │ └── ircDDB.vcproj └── missing ├── XReflectorDaemon ├── BUILD.txt ├── CHANGES.txt ├── COPYING.txt ├── Common │ ├── AMBEData.cpp │ ├── AMBEData.h │ ├── APRSCollector.cpp │ ├── APRSCollector.h │ ├── APRSWriter.cpp │ ├── APRSWriter.h │ ├── APRSWriterThread.cpp │ ├── APRSWriterThread.h │ ├── AddressTextCtrl.cpp │ ├── AddressTextCtrl.h │ ├── AudioUnit.cpp │ ├── AudioUnit.h │ ├── CCITTChecksum.cpp │ ├── CCITTChecksum.h │ ├── CCSHandler.cpp │ ├── CCSHandler.h │ ├── CCSProtocolHandler.cpp │ ├── CCSProtocolHandler.h │ ├── CacheManager.cpp │ ├── CacheManager.h │ ├── CallsignServer.cpp │ ├── CallsignServer.h │ ├── CallsignTextCtrl.cpp │ ├── CallsignTextCtrl.h │ ├── Checksum.h │ ├── Common.vcproj │ ├── ConnectData.cpp │ ├── ConnectData.h │ ├── DCSHandler.cpp │ ├── DCSHandler.h │ ├── DCSProtocolHandler.cpp │ ├── DCSProtocolHandler.h │ ├── DCSProtocolHandlerPool.cpp │ ├── DCSProtocolHandlerPool.h │ ├── DCSSet.cpp │ ├── DCSSet.h │ ├── DDData.cpp │ ├── DDData.h │ ├── DDHandler.cpp │ ├── DDHandler.h │ ├── DExtraHandler.cpp │ ├── DExtraHandler.h │ ├── DExtraProtocolHandler.cpp │ ├── DExtraProtocolHandler.h │ ├── DExtraSet.cpp │ ├── DExtraSet.h │ ├── DPRSSet.cpp │ ├── DPRSSet.h │ ├── DPlusAuthenticator.cpp │ ├── DPlusAuthenticator.h │ ├── DPlusHandler.cpp │ ├── DPlusHandler.h │ ├── DPlusProtocolHandler.cpp │ ├── DPlusProtocolHandler.h │ ├── DPlusProtocolHandlerPool.cpp │ ├── DPlusProtocolHandlerPool.h │ ├── DPlusSet.cpp │ ├── DPlusSet.h │ ├── DRATSServer.cpp │ ├── DRATSServer.h │ ├── DStarDefines.h │ ├── DTMF.cpp │ ├── DTMF.h │ ├── Defs.h │ ├── DummyRepeaterProtocolHandler.cpp │ ├── DummyRepeaterProtocolHandler.h │ ├── EchoUnit.cpp │ ├── EchoUnit.h │ ├── G2Handler.cpp │ ├── G2Handler.h │ ├── G2ProtocolHandler.cpp │ ├── G2ProtocolHandler.h │ ├── GatewayCache.cpp │ ├── GatewayCache.h │ ├── HBRepeaterProtocolHandler.cpp │ ├── HBRepeaterProtocolHandler.h │ ├── HeaderData.cpp │ ├── HeaderData.h │ ├── HeaderLogger.cpp │ ├── HeaderLogger.h │ ├── HeardData.cpp │ ├── HeardData.h │ ├── HostFile.cpp │ ├── HostFile.h │ ├── IcomRepeaterProtocolHandler.cpp │ ├── IcomRepeaterProtocolHandler.h │ ├── LogEvent.cpp │ ├── LogEvent.h │ ├── Logger.cpp │ ├── Logger.h │ ├── Makefile │ ├── PollData.cpp │ ├── PollData.h │ ├── PortTextCtrl.cpp │ ├── PortTextCtrl.h │ ├── ReflectorCallback.h │ ├── RemoteHandler.cpp │ ├── RemoteHandler.h │ ├── RemoteLinkData.cpp │ ├── RemoteLinkData.h │ ├── RemoteProtocolHandler.cpp │ ├── RemoteProtocolHandler.h │ ├── RemoteReflectorData.cpp │ ├── RemoteReflectorData.h │ ├── RemoteRepeaterData.cpp │ ├── RemoteRepeaterData.h │ ├── RemoteSet.cpp │ ├── RemoteSet.h │ ├── RemoteStarNetGroup.cpp │ ├── RemoteStarNetGroup.h │ ├── RemoteStarNetUser.cpp │ ├── RemoteStarNetUser.h │ ├── RepeaterCache.cpp │ ├── RepeaterCache.h │ ├── RepeaterCallback.h │ ├── RepeaterDataSet.cpp │ ├── RepeaterDataSet.h │ ├── RepeaterHandler.cpp │ ├── RepeaterHandler.h │ ├── RepeaterInfoSet.cpp │ ├── RepeaterInfoSet.h │ ├── RepeaterProtocolHandler.h │ ├── RestrictedTextCtrl.cpp │ ├── RestrictedTextCtrl.h │ ├── RingBuffer.h │ ├── SHA256.cpp │ ├── SHA256.h │ ├── SlowDataEncoder.cpp │ ├── SlowDataEncoder.h │ ├── StarNetHandler.cpp │ ├── StarNetHandler.h │ ├── StarNetSet.cpp │ ├── StarNetSet.h │ ├── StatusData.cpp │ ├── StatusData.h │ ├── TCPReaderWriterClient.cpp │ ├── TCPReaderWriterClient.h │ ├── TCPReaderWriterServer.cpp │ ├── TCPReaderWriterServer.h │ ├── TextCollector.cpp │ ├── TextCollector.h │ ├── TextData.cpp │ ├── TextData.h │ ├── Timer.cpp │ ├── Timer.h │ ├── UDPReaderWriter.cpp │ ├── UDPReaderWriter.h │ ├── UserCache.cpp │ ├── UserCache.h │ ├── Utils.cpp │ ├── Utils.h │ ├── Version.h │ ├── VersionUnit.cpp │ └── VersionUnit.h ├── Makefile ├── XReflector.sln ├── XReflectorD │ ├── Makefile │ ├── XReflector.vcproj │ ├── XReflectorApp.cpp │ ├── XReflectorApp.h │ ├── XReflectorAppD.cpp │ ├── XReflectorAppD.h │ ├── XReflectorConfig.cpp │ ├── XReflectorConfig.h │ ├── XReflectorDExtraHandler.cpp │ ├── XReflectorDExtraHandler.h │ ├── XReflectorDPlusHandler.cpp │ ├── XReflectorDPlusHandler.h │ ├── XReflectorDPlusSet.cpp │ ├── XReflectorDPlusSet.h │ ├── XReflectorDefs.h │ ├── XReflectorFrame.cpp │ ├── XReflectorFrame.h │ ├── XReflectorLogRedirect.cpp │ ├── XReflectorLogRedirect.h │ ├── XReflectorMiscellaneousSet.cpp │ ├── XReflectorMiscellaneousSet.h │ ├── XReflectorPreferences.cpp │ ├── XReflectorPreferences.h │ ├── XReflectorReflectorCallback.h │ ├── XReflectorReflectorHandler.cpp │ ├── XReflectorReflectorHandler.h │ ├── XReflectorReflectorSet.cpp │ ├── XReflectorReflectorSet.h │ ├── XReflectorThread.cpp │ ├── XReflectorThread.h │ ├── XReflectorThreadHelper.cpp │ ├── XReflectorThreadHelper.h │ ├── XReflectorUserLog.cpp │ └── XReflectorUserLog.h ├── package.mk ├── package_deb.mk ├── package_default.mk ├── settings.mk ├── settings_debian_amd64.mk ├── settings_debian_arm.mk ├── settings_debian_armel.mk ├── settings_debian_armhf.mk ├── settings_debian_i386.mk ├── settings_default.mk ├── settings_raspbian_armhf_pi.mk ├── settings_raspbian_armhf_pi2.mk └── settings_rpi.mk ├── ircDDBGateway.nsi └── ircDDBGateway ├── .gitignore ├── APRSTransmit ├── APRSParser.cpp ├── APRSParser.h ├── APRSTransmit.cpp ├── APRSTransmit.h ├── APRSTransmit.vcproj ├── APRSTransmit.vcxproj ├── APRSTransmit.vcxproj.filters ├── APRSTransmitApp.cpp ├── APRSTransmitAppD.cpp ├── APRSTransmitAppD.h ├── APRSTransmitD.vcxproj └── APRSTransmitD.vcxproj.filters ├── BUILD.txt ├── Backup └── ircDDBGateway.sln ├── CHANGES.txt ├── COPYING.txt ├── Common ├── AMBEData.cpp ├── AMBEData.h ├── APRSCollector.cpp ├── APRSCollector.h ├── APRSWriter.cpp ├── APRSWriter.h ├── APRSWriterThread.cpp ├── APRSWriterThread.h ├── AnnouncementUnit.cpp ├── AnnouncementUnit.h ├── AudioUnit.cpp ├── AudioUnit.h ├── CCITTChecksum.cpp ├── CCITTChecksum.h ├── CCSCallback.h ├── CCSData.cpp ├── CCSData.h ├── CCSHandler.cpp ├── CCSHandler.h ├── CCSProtocolHandler.cpp ├── CCSProtocolHandler.h ├── CacheManager.cpp ├── CacheManager.h ├── CallsignList.cpp ├── CallsignList.h ├── CallsignServer.cpp ├── CallsignServer.h ├── Common.vcproj ├── Common.vcxproj ├── Common.vcxproj.filters ├── ConnectData.cpp ├── ConnectData.h ├── DCSHandler.cpp ├── DCSHandler.h ├── DCSProtocolHandler.cpp ├── DCSProtocolHandler.h ├── DCSProtocolHandlerPool.cpp ├── DCSProtocolHandlerPool.h ├── DDData.cpp ├── DDData.h ├── DDHandler.cpp ├── DDHandler.h ├── DExtraHandler.cpp ├── DExtraHandler.h ├── DExtraProtocolHandler.cpp ├── DExtraProtocolHandler.h ├── DExtraProtocolHandlerPool.cpp ├── DExtraProtocolHandlerPool.h ├── DPlusAuthenticator.cpp ├── DPlusAuthenticator.h ├── DPlusHandler.cpp ├── DPlusHandler.h ├── DPlusProtocolHandler.cpp ├── DPlusProtocolHandler.h ├── DPlusProtocolHandlerPool.cpp ├── DPlusProtocolHandlerPool.h ├── DRATSServer.cpp ├── DRATSServer.h ├── DStarDefines.h ├── DTMF.cpp ├── DTMF.h ├── DVTOOLFileReader.cpp ├── DVTOOLFileReader.h ├── Defs.h ├── DummyRepeaterProtocolHandler.cpp ├── DummyRepeaterProtocolHandler.h ├── EchoUnit.cpp ├── EchoUnit.h ├── G2Handler.cpp ├── G2Handler.h ├── G2ProtocolHandler.cpp ├── G2ProtocolHandler.h ├── GatewayCache.cpp ├── GatewayCache.h ├── HBRepeaterProtocolHandler.cpp ├── HBRepeaterProtocolHandler.h ├── HeaderData.cpp ├── HeaderData.h ├── HeaderLogger.cpp ├── HeaderLogger.h ├── HeardData.cpp ├── HeardData.h ├── HostFile.cpp ├── HostFile.h ├── IRCDDBGatewayConfig.cpp ├── IRCDDBGatewayConfig.h ├── IcomRepeaterProtocolHandler.cpp ├── IcomRepeaterProtocolHandler.h ├── LogEvent.cpp ├── LogEvent.h ├── Logger.cpp ├── Logger.h ├── PollData.cpp ├── PollData.h ├── ReflectorCallback.h ├── RemoteHandler.cpp ├── RemoteHandler.h ├── RemoteLinkData.cpp ├── RemoteLinkData.h ├── RemoteProtocolHandler.cpp ├── RemoteProtocolHandler.h ├── RemoteRepeaterData.cpp ├── RemoteRepeaterData.h ├── RemoteStarNetGroup.cpp ├── RemoteStarNetGroup.h ├── RemoteStarNetUser.cpp ├── RemoteStarNetUser.h ├── RepeaterCache.cpp ├── RepeaterCache.h ├── RepeaterCallback.h ├── RepeaterHandler.cpp ├── RepeaterHandler.h ├── RepeaterProtocolHandler.h ├── RingBuffer.h ├── SHA256.cpp ├── SHA256.h ├── SlowDataEncoder.cpp ├── SlowDataEncoder.h ├── StarNetHandler.cpp ├── StarNetHandler.h ├── StatusData.cpp ├── StatusData.h ├── TCPReaderWriterClient.cpp ├── TCPReaderWriterClient.h ├── TCPReaderWriterServer.cpp ├── TCPReaderWriterServer.h ├── TextCollector.cpp ├── TextCollector.h ├── TextData.cpp ├── TextData.h ├── Timer.cpp ├── Timer.h ├── UDPReaderWriter.cpp ├── UDPReaderWriter.h ├── UserCache.cpp ├── UserCache.h ├── Utils.cpp ├── Utils.h ├── Version.h ├── VersionUnit.cpp ├── VersionUnit.h ├── XLXHostsFileDownloader.cpp └── XLXHostsFileDownloader.h ├── Data ├── CCS_Hosts.txt ├── DCS_Hosts.txt ├── DExtra_Hosts.txt ├── DPlus_Hosts.txt ├── TIME_de_DE.ambe ├── TIME_de_DE.indx ├── TIME_en_GB.ambe ├── TIME_en_GB.indx ├── TIME_en_US.ambe ├── TIME_en_US.indx ├── TIME_fr_FR.ambe ├── TIME_fr_FR.indx ├── TIME_se_SE.ambe ├── TIME_se_SE.indx ├── de_DE.ambe ├── de_DE.indx ├── dk_DK.ambe ├── dk_DK.indx ├── en_GB.ambe ├── en_GB.indx ├── en_US.ambe ├── en_US.indx ├── es_ES.ambe ├── es_ES.indx ├── fr_FR.ambe ├── fr_FR.indx ├── it_IT.ambe ├── it_IT.indx ├── no_NO.ambe ├── no_NO.indx ├── pl_PL.ambe ├── pl_PL.indx ├── se_SE.ambe └── se_SE.indx ├── GUICommon ├── AddressTextCtrl.cpp ├── AddressTextCtrl.h ├── CallsignTextCtrl.cpp ├── CallsignTextCtrl.h ├── DCSSet.cpp ├── DCSSet.h ├── DExtraSet.cpp ├── DExtraSet.h ├── DPRSSet.cpp ├── DPRSSet.h ├── DPlusSet.cpp ├── DPlusSet.h ├── DescriptionTextCtrl.cpp ├── DescriptionTextCtrl.h ├── GUICommon.vcproj ├── GUICommon.vcxproj ├── GUICommon.vcxproj.filters ├── PortTextCtrl.cpp ├── PortTextCtrl.h ├── RemoteSet.cpp ├── RemoteSet.h ├── RepeaterDataSet.cpp ├── RepeaterDataSet.h ├── RepeaterInfoSet.cpp ├── RepeaterInfoSet.h ├── RestrictedTextCtrl.cpp ├── RestrictedTextCtrl.h ├── StarNetSet.cpp ├── StarNetSet.h ├── XLXSet.cpp └── XLXSet.h ├── Makefile.am ├── Makefile.in ├── RemoteControl ├── RemoteControl.vcproj ├── RemoteControl.vcxproj ├── RemoteControl.vcxproj.filters ├── RemoteControlApp.cpp ├── RemoteControlApp.h ├── RemoteControlAppD.cpp ├── RemoteControlCallsignData.cpp ├── RemoteControlCallsignData.h ├── RemoteControlConfig.cpp ├── RemoteControlConfig.h ├── RemoteControlDefs.h ├── RemoteControlFrame.cpp ├── RemoteControlFrame.h ├── RemoteControlLinkData.cpp ├── RemoteControlLinkData.h ├── RemoteControlPreferences.cpp ├── RemoteControlPreferences.h ├── RemoteControlRemoteControlHandler.cpp ├── RemoteControlRemoteControlHandler.h ├── RemoteControlRemoteSet.cpp ├── RemoteControlRemoteSet.h ├── RemoteControlRepeaterData.cpp ├── RemoteControlRepeaterData.h ├── RemoteControlRepeaterPanel.cpp ├── RemoteControlRepeaterPanel.h ├── RemoteControlStarNetGroup.cpp ├── RemoteControlStarNetGroup.h ├── RemoteControlStarNetPanel.cpp ├── RemoteControlStarNetPanel.h ├── RemoteControlStarNetUser.cpp └── RemoteControlStarNetUser.h ├── StarNetServer ├── StarNetServer.vcproj ├── StarNetServer.vcxproj ├── StarNetServer.vcxproj.filters ├── StarNetServerApp.cpp ├── StarNetServerApp.h ├── StarNetServerAppD.cpp ├── StarNetServerAppD.h ├── StarNetServerCallsignSet.cpp ├── StarNetServerCallsignSet.h ├── StarNetServerConfig.cpp ├── StarNetServerConfig.h ├── StarNetServerDefs.h ├── StarNetServerFrame.cpp ├── StarNetServerFrame.h ├── StarNetServerIrcDDBSet.cpp ├── StarNetServerIrcDDBSet.h ├── StarNetServerLogRedirect.cpp ├── StarNetServerLogRedirect.h ├── StarNetServerMiscellaneousSet.cpp ├── StarNetServerMiscellaneousSet.h ├── StarNetServerPreferences.cpp ├── StarNetServerPreferences.h ├── StarNetServerThread.cpp ├── StarNetServerThread.h ├── StarNetServerThreadHelper.cpp └── StarNetServerThreadHelper.h ├── TextTransmit ├── TextTransmit.cpp ├── TextTransmit.h ├── TextTransmit.vcproj ├── TextTransmit.vcxproj └── TextTransmit.vcxproj.filters ├── TimeServer ├── TimeServer.vcproj ├── TimeServer.vcxproj ├── TimeServer.vcxproj.filters ├── TimeServerAnnouncementsSet.cpp ├── TimeServerAnnouncementsSet.h ├── TimeServerApp.cpp ├── TimeServerApp.h ├── TimeServerConfig.cpp ├── TimeServerConfig.h ├── TimeServerD.cpp ├── TimeServerD.h ├── TimeServerDefs.h ├── TimeServerFrame.cpp ├── TimeServerFrame.h ├── TimeServerGatewaySet.cpp ├── TimeServerGatewaySet.h ├── TimeServerLogRedirect.cpp ├── TimeServerLogRedirect.h ├── TimeServerPreferences.cpp ├── TimeServerPreferences.h ├── TimeServerThread.cpp ├── TimeServerThread.h ├── TimeServerThreadHelper.cpp └── TimeServerThreadHelper.h ├── TimerControl ├── TimerControl.vcproj ├── TimerControl.vcxproj ├── TimerControl.vcxproj.filters ├── TimerControlApp.cpp ├── TimerControlApp.h ├── TimerControlAppD.cpp ├── TimerControlAppD.h ├── TimerControlConfig.cpp ├── TimerControlConfig.h ├── TimerControlDefs.h ├── TimerControlFrame.cpp ├── TimerControlFrame.h ├── TimerControlItem.h ├── TimerControlItemFile.cpp ├── TimerControlItemFile.h ├── TimerControlPreferences.cpp ├── TimerControlPreferences.h ├── TimerControlRemoteControlHandler.cpp ├── TimerControlRemoteControlHandler.h ├── TimerControlRemoteSet.cpp ├── TimerControlRemoteSet.h ├── TimerControlRepeaterPanel.cpp ├── TimerControlRepeaterPanel.h ├── TimerControlThread.cpp ├── TimerControlThread.h ├── TimerControlThreadHelper.cpp └── TimerControlThreadHelper.h ├── VoiceTransmit ├── VoiceStore.cpp ├── VoiceStore.h ├── VoiceTransmit.cpp ├── VoiceTransmit.h ├── VoiceTransmit.vcproj ├── VoiceTransmit.vcxproj └── VoiceTransmit.vcxproj.filters ├── aclocal.m4 ├── ar-lib ├── compile ├── configure ├── configure.ac ├── debian ├── README ├── README.Debian ├── README.source ├── aprstransmitd.aprstransmitd@.service ├── aprstransmitd.conf ├── aprstransmitd.install ├── changelog ├── compat ├── control ├── copyright ├── docs ├── ircddbgateway-tools.install ├── ircddbgateway.install ├── ircddbgateway.logrotate ├── ircddbgatewayd.install ├── ircddbgatewayd.ircddbgatewayd.service ├── ircddbgatewayd.logrotate ├── opendv-base.dirs ├── opendv-base.install ├── opendv-base.postinst ├── remotecontrol.install ├── remotecontrold.install ├── rules ├── source │ └── format ├── starnetserver.install ├── starnetserver.logrotate ├── starnetserverd.install ├── starnetserverd.logrotate ├── starnetserverd.starnetserverd.service ├── timercontrol.install ├── timercontrol.logrotate ├── timercontrold.install ├── timercontrold.logrotate ├── timercontrold.timercontrold.service ├── timeserver.install ├── timeserver.logrotate ├── timeserverd.install ├── timeserverd.logrotate └── timeserverd.timeserverd.service ├── depcomp ├── install-sh ├── ircDDB ├── IRCApplication.h ├── IRCClient.cpp ├── IRCClient.h ├── IRCDDB.cpp ├── IRCDDB.h ├── IRCDDBApp.cpp ├── IRCDDBApp.h ├── IRCDDBClient.cpp ├── IRCDDBClient.h ├── IRCDDBMultiClient.cpp ├── IRCDDBMultiClient.h ├── IRCMessage.cpp ├── IRCMessage.h ├── IRCMessageQueue.cpp ├── IRCMessageQueue.h ├── IRCProtocol.cpp ├── IRCProtocol.h ├── IRCReceiver.cpp ├── IRCReceiver.h ├── IRCutils.cpp ├── IRCutils.h ├── LICENSE ├── README ├── ircDDB.vcproj ├── ircDDB.vcxproj └── ircDDB.vcxproj.filters ├── ircDDBGateway.sln ├── ircDDBGateway ├── IRCDDBGatewayApp.cpp ├── IRCDDBGatewayApp.h ├── IRCDDBGatewayAppD.cpp ├── IRCDDBGatewayAppD.h ├── IRCDDBGatewayDefs.h ├── IRCDDBGatewayFrame.cpp ├── IRCDDBGatewayFrame.h ├── IRCDDBGatewayLogRedirect.cpp ├── IRCDDBGatewayLogRedirect.h ├── IRCDDBGatewayStatusData.cpp ├── IRCDDBGatewayStatusData.h ├── IRCDDBGatewayThread.cpp ├── IRCDDBGatewayThread.h ├── IRCDDBGatewayThreadHelper.cpp ├── IRCDDBGatewayThreadHelper.h ├── ircDDBGateway.vcproj ├── ircDDBGateway.vcxproj └── ircDDBGateway.vcxproj.filters ├── ircDDBGatewayConfig ├── IRCDDBGatewayConfigApp.cpp ├── IRCDDBGatewayConfigApp.h ├── IRCDDBGatewayConfigDefs.h ├── IRCDDBGatewayConfigFrame.cpp ├── IRCDDBGatewayConfigFrame.h ├── IRCDDBGatewayConfigGatewaySet.cpp ├── IRCDDBGatewayConfigGatewaySet.h ├── IRCDDBGatewayConfigIrcDDBSet.cpp ├── IRCDDBGatewayConfigIrcDDBSet.h ├── IRCDDBGatewayConfigMiscellaneousSet.cpp ├── IRCDDBGatewayConfigMiscellaneousSet.h ├── ircDDBGatewayConfig.vcproj ├── ircDDBGatewayConfig.vcxproj └── ircDDBGatewayConfig.vcxproj.filters ├── ircDDBGatewayVS2015.sln ├── missing └── tests ├── Tests.cpp └── Tests.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/.gitignore -------------------------------------------------------------------------------- /AMBETools.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools.nsi -------------------------------------------------------------------------------- /AMBETools/AMBETools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/AMBETools.sln -------------------------------------------------------------------------------- /AMBETools/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/BUILD.txt -------------------------------------------------------------------------------- /AMBETools/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/CHANGES.txt -------------------------------------------------------------------------------- /AMBETools/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/COPYING.txt -------------------------------------------------------------------------------- /AMBETools/Common/AMBE3000Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/AMBE3000Thread.cpp -------------------------------------------------------------------------------- /AMBETools/Common/AMBE3000Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/AMBE3000Thread.h -------------------------------------------------------------------------------- /AMBETools/Common/AMBEFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/AMBEFileReader.cpp -------------------------------------------------------------------------------- /AMBETools/Common/AMBEFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/AMBEFileReader.h -------------------------------------------------------------------------------- /AMBETools/Common/AMBEFileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/AMBEFileWriter.cpp -------------------------------------------------------------------------------- /AMBETools/Common/AMBEFileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/AMBEFileWriter.h -------------------------------------------------------------------------------- /AMBETools/Common/AddressTextCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/AddressTextCtrl.cpp -------------------------------------------------------------------------------- /AMBETools/Common/AddressTextCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/AddressTextCtrl.h -------------------------------------------------------------------------------- /AMBETools/Common/AudioCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/AudioCallback.h -------------------------------------------------------------------------------- /AMBETools/Common/BleepSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/BleepSet.cpp -------------------------------------------------------------------------------- /AMBETools/Common/BleepSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/BleepSet.h -------------------------------------------------------------------------------- /AMBETools/Common/Bleeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/Bleeper.cpp -------------------------------------------------------------------------------- /AMBETools/Common/Bleeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/Bleeper.h -------------------------------------------------------------------------------- /AMBETools/Common/CallsignSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/CallsignSet.cpp -------------------------------------------------------------------------------- /AMBETools/Common/CallsignSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/CallsignSet.h -------------------------------------------------------------------------------- /AMBETools/Common/CallsignTextCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/CallsignTextCtrl.cpp -------------------------------------------------------------------------------- /AMBETools/Common/CallsignTextCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/CallsignTextCtrl.h -------------------------------------------------------------------------------- /AMBETools/Common/Common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/Common.vcproj -------------------------------------------------------------------------------- /AMBETools/Common/DStarDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DStarDefines.h -------------------------------------------------------------------------------- /AMBETools/Common/DV3000Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DV3000Controller.cpp -------------------------------------------------------------------------------- /AMBETools/Common/DV3000Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DV3000Controller.h -------------------------------------------------------------------------------- /AMBETools/Common/DVDongleController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DVDongleController.h -------------------------------------------------------------------------------- /AMBETools/Common/DVDongleThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DVDongleThread.cpp -------------------------------------------------------------------------------- /AMBETools/Common/DVDongleThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DVDongleThread.h -------------------------------------------------------------------------------- /AMBETools/Common/DVTOOLFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DVTOOLFileReader.cpp -------------------------------------------------------------------------------- /AMBETools/Common/DVTOOLFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DVTOOLFileReader.h -------------------------------------------------------------------------------- /AMBETools/Common/DVTOOLFileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DVTOOLFileWriter.cpp -------------------------------------------------------------------------------- /AMBETools/Common/DVTOOLFileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DVTOOLFileWriter.h -------------------------------------------------------------------------------- /AMBETools/Common/DecodeCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DecodeCallback.h -------------------------------------------------------------------------------- /AMBETools/Common/DongleSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DongleSet.cpp -------------------------------------------------------------------------------- /AMBETools/Common/DongleSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DongleSet.h -------------------------------------------------------------------------------- /AMBETools/Common/DongleThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DongleThread.cpp -------------------------------------------------------------------------------- /AMBETools/Common/DongleThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/DongleThread.h -------------------------------------------------------------------------------- /AMBETools/Common/EncodeCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/EncodeCallback.h -------------------------------------------------------------------------------- /AMBETools/Common/ErrorEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/ErrorEvent.cpp -------------------------------------------------------------------------------- /AMBETools/Common/ErrorEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/ErrorEvent.h -------------------------------------------------------------------------------- /AMBETools/Common/FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/FIRFilter.cpp -------------------------------------------------------------------------------- /AMBETools/Common/FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/FIRFilter.h -------------------------------------------------------------------------------- /AMBETools/Common/FileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/FileReader.cpp -------------------------------------------------------------------------------- /AMBETools/Common/FileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/FileReader.h -------------------------------------------------------------------------------- /AMBETools/Common/FileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/FileWriter.cpp -------------------------------------------------------------------------------- /AMBETools/Common/FileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/FileWriter.h -------------------------------------------------------------------------------- /AMBETools/Common/HeaderData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/HeaderData.cpp -------------------------------------------------------------------------------- /AMBETools/Common/HeaderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/HeaderData.h -------------------------------------------------------------------------------- /AMBETools/Common/HeaderEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/HeaderEvent.cpp -------------------------------------------------------------------------------- /AMBETools/Common/HeaderEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/HeaderEvent.h -------------------------------------------------------------------------------- /AMBETools/Common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/Logger.cpp -------------------------------------------------------------------------------- /AMBETools/Common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/Logger.h -------------------------------------------------------------------------------- /AMBETools/Common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/Makefile -------------------------------------------------------------------------------- /AMBETools/Common/MessageData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/MessageData.cpp -------------------------------------------------------------------------------- /AMBETools/Common/MessageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/MessageData.h -------------------------------------------------------------------------------- /AMBETools/Common/MessageEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/MessageEvent.cpp -------------------------------------------------------------------------------- /AMBETools/Common/MessageEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/MessageEvent.h -------------------------------------------------------------------------------- /AMBETools/Common/MessageSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/MessageSet.cpp -------------------------------------------------------------------------------- /AMBETools/Common/MessageSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/MessageSet.h -------------------------------------------------------------------------------- /AMBETools/Common/MessageTextCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/MessageTextCtrl.cpp -------------------------------------------------------------------------------- /AMBETools/Common/MessageTextCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/MessageTextCtrl.h -------------------------------------------------------------------------------- /AMBETools/Common/PortTextCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/PortTextCtrl.cpp -------------------------------------------------------------------------------- /AMBETools/Common/PortTextCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/PortTextCtrl.h -------------------------------------------------------------------------------- /AMBETools/Common/RestrictedTextCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/RestrictedTextCtrl.h -------------------------------------------------------------------------------- /AMBETools/Common/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/RingBuffer.h -------------------------------------------------------------------------------- /AMBETools/Common/SlowDataDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/SlowDataDecoder.cpp -------------------------------------------------------------------------------- /AMBETools/Common/SlowDataDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/SlowDataDecoder.h -------------------------------------------------------------------------------- /AMBETools/Common/SlowDataEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/SlowDataEncoder.cpp -------------------------------------------------------------------------------- /AMBETools/Common/SlowDataEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/SlowDataEncoder.h -------------------------------------------------------------------------------- /AMBETools/Common/SoundcardSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/SoundcardSet.cpp -------------------------------------------------------------------------------- /AMBETools/Common/SoundcardSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/SoundcardSet.h -------------------------------------------------------------------------------- /AMBETools/Common/UDPReaderWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/UDPReaderWriter.cpp -------------------------------------------------------------------------------- /AMBETools/Common/UDPReaderWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/UDPReaderWriter.h -------------------------------------------------------------------------------- /AMBETools/Common/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/Utils.cpp -------------------------------------------------------------------------------- /AMBETools/Common/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/Utils.h -------------------------------------------------------------------------------- /AMBETools/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/Version.h -------------------------------------------------------------------------------- /AMBETools/Common/WAVFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/WAVFileReader.cpp -------------------------------------------------------------------------------- /AMBETools/Common/WAVFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/WAVFileReader.h -------------------------------------------------------------------------------- /AMBETools/Common/WAVFileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/WAVFileWriter.cpp -------------------------------------------------------------------------------- /AMBETools/Common/WAVFileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Common/WAVFileWriter.h -------------------------------------------------------------------------------- /AMBETools/DVToolReader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/DVToolReader/Makefile -------------------------------------------------------------------------------- /AMBETools/DVToolWriter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/DVToolWriter/Makefile -------------------------------------------------------------------------------- /AMBETools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/Makefile -------------------------------------------------------------------------------- /AMBETools/ambe2wav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/ambe2wav/Makefile -------------------------------------------------------------------------------- /AMBETools/ambe2wav/ambe2wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/ambe2wav/ambe2wav.cpp -------------------------------------------------------------------------------- /AMBETools/ambe2wav/ambe2wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/ambe2wav/ambe2wav.h -------------------------------------------------------------------------------- /AMBETools/ambe2wav/ambe2wav.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/ambe2wav/ambe2wav.vcproj -------------------------------------------------------------------------------- /AMBETools/dvtool2wav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/dvtool2wav/Makefile -------------------------------------------------------------------------------- /AMBETools/dvtool2wav/dvtool2wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/dvtool2wav/dvtool2wav.cpp -------------------------------------------------------------------------------- /AMBETools/dvtool2wav/dvtool2wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/dvtool2wav/dvtool2wav.h -------------------------------------------------------------------------------- /AMBETools/package.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AMBETools/package_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/package_default.mk -------------------------------------------------------------------------------- /AMBETools/settings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/settings.mk -------------------------------------------------------------------------------- /AMBETools/settings_debian_amd64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/settings_debian_amd64.mk -------------------------------------------------------------------------------- /AMBETools/settings_debian_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/settings_debian_arm.mk -------------------------------------------------------------------------------- /AMBETools/settings_debian_armel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/settings_debian_armel.mk -------------------------------------------------------------------------------- /AMBETools/settings_debian_armhf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/settings_debian_armhf.mk -------------------------------------------------------------------------------- /AMBETools/settings_debian_i386.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/settings_debian_i386.mk -------------------------------------------------------------------------------- /AMBETools/settings_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/settings_default.mk -------------------------------------------------------------------------------- /AMBETools/settings_rpi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/settings_rpi.mk -------------------------------------------------------------------------------- /AMBETools/wav2ambe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/wav2ambe/Makefile -------------------------------------------------------------------------------- /AMBETools/wav2ambe/wav2ambe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/wav2ambe/wav2ambe.cpp -------------------------------------------------------------------------------- /AMBETools/wav2ambe/wav2ambe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/wav2ambe/wav2ambe.h -------------------------------------------------------------------------------- /AMBETools/wav2ambe/wav2ambe.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/wav2ambe/wav2ambe.vcproj -------------------------------------------------------------------------------- /AMBETools/wav2dvtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/wav2dvtool/Makefile -------------------------------------------------------------------------------- /AMBETools/wav2dvtool/wav2dvtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/wav2dvtool/wav2dvtool.cpp -------------------------------------------------------------------------------- /AMBETools/wav2dvtool/wav2dvtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AMBETools/wav2dvtool/wav2dvtool.h -------------------------------------------------------------------------------- /AnalogueRepeater.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater.nsi -------------------------------------------------------------------------------- /AnalogueRepeater/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/.gitignore -------------------------------------------------------------------------------- /AnalogueRepeater/AnalogueRepeater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/AnalogueRepeater.sln -------------------------------------------------------------------------------- /AnalogueRepeater/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/BUILD.txt -------------------------------------------------------------------------------- /AnalogueRepeater/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/CHANGES.txt -------------------------------------------------------------------------------- /AnalogueRepeater/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/COPYING.txt -------------------------------------------------------------------------------- /AnalogueRepeater/Common/AudioDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/AudioDelay.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/CWKeyer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/CWKeyer.cpp -------------------------------------------------------------------------------- /AnalogueRepeater/Common/CWKeyer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/CWKeyer.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/CWTextCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/CWTextCtrl.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/Common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/Common.vcproj -------------------------------------------------------------------------------- /AnalogueRepeater/Common/DTMFDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/DTMFDecoder.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/FIRFilter.cpp -------------------------------------------------------------------------------- /AnalogueRepeater/Common/FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/FIRFilter.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/Goertzel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/Goertzel.cpp -------------------------------------------------------------------------------- /AnalogueRepeater/Common/Goertzel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/Goertzel.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/LogEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/LogEvent.cpp -------------------------------------------------------------------------------- /AnalogueRepeater/Common/LogEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/LogEvent.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/Logger.cpp -------------------------------------------------------------------------------- /AnalogueRepeater/Common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/Logger.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/NCO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/NCO.cpp -------------------------------------------------------------------------------- /AnalogueRepeater/Common/NCO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/NCO.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/PTTDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/PTTDelay.cpp -------------------------------------------------------------------------------- /AnalogueRepeater/Common/PTTDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/PTTDelay.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/RingBuffer.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/Timer.cpp -------------------------------------------------------------------------------- /AnalogueRepeater/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/Timer.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/Utils.cpp -------------------------------------------------------------------------------- /AnalogueRepeater/Common/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/Utils.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/VOGAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/VOGAD.cpp -------------------------------------------------------------------------------- /AnalogueRepeater/Common/VOGAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/VOGAD.h -------------------------------------------------------------------------------- /AnalogueRepeater/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Common/Version.h -------------------------------------------------------------------------------- /AnalogueRepeater/LinuxUSB/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/LinuxUSB/README.txt -------------------------------------------------------------------------------- /AnalogueRepeater/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Makefile.am -------------------------------------------------------------------------------- /AnalogueRepeater/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/Makefile.in -------------------------------------------------------------------------------- /AnalogueRepeater/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/aclocal.m4 -------------------------------------------------------------------------------- /AnalogueRepeater/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/ar-lib -------------------------------------------------------------------------------- /AnalogueRepeater/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/compile -------------------------------------------------------------------------------- /AnalogueRepeater/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/configure -------------------------------------------------------------------------------- /AnalogueRepeater/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/configure.ac -------------------------------------------------------------------------------- /AnalogueRepeater/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/depcomp -------------------------------------------------------------------------------- /AnalogueRepeater/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/install-sh -------------------------------------------------------------------------------- /AnalogueRepeater/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/AnalogueRepeater/missing -------------------------------------------------------------------------------- /DStarRepeater.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater.nsi -------------------------------------------------------------------------------- /DStarRepeater/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/.gitignore -------------------------------------------------------------------------------- /DStarRepeater/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/BUILD.txt -------------------------------------------------------------------------------- /DStarRepeater/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/CHANGES.txt -------------------------------------------------------------------------------- /DStarRepeater/COPYING: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.15/COPYING -------------------------------------------------------------------------------- /DStarRepeater/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/COPYING.txt -------------------------------------------------------------------------------- /DStarRepeater/Common/AMBEFEC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/AMBEFEC.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/AMBEFEC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/AMBEFEC.h -------------------------------------------------------------------------------- /DStarRepeater/Common/AudioCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/AudioCallback.h -------------------------------------------------------------------------------- /DStarRepeater/Common/BeaconCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/BeaconCallback.h -------------------------------------------------------------------------------- /DStarRepeater/Common/BeaconUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/BeaconUnit.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/BeaconUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/BeaconUnit.h -------------------------------------------------------------------------------- /DStarRepeater/Common/CCITTChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/CCITTChecksum.h -------------------------------------------------------------------------------- /DStarRepeater/Common/CallsignList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/CallsignList.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/CallsignList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/CallsignList.h -------------------------------------------------------------------------------- /DStarRepeater/Common/Common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Common.vcproj -------------------------------------------------------------------------------- /DStarRepeater/Common/Common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Common.vcxproj -------------------------------------------------------------------------------- /DStarRepeater/Common/DStarDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/DStarDefines.h -------------------------------------------------------------------------------- /DStarRepeater/Common/DStarScrambler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/DStarScrambler.h -------------------------------------------------------------------------------- /DStarRepeater/Common/DVAPController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/DVAPController.h -------------------------------------------------------------------------------- /DStarRepeater/Common/FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/FIRFilter.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/FIRFilter.h -------------------------------------------------------------------------------- /DStarRepeater/Common/GMSKController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/GMSKController.h -------------------------------------------------------------------------------- /DStarRepeater/Common/GMSKModem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/GMSKModem.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/GMSKModem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/GMSKModem.h -------------------------------------------------------------------------------- /DStarRepeater/Common/GPIOController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/GPIOController.h -------------------------------------------------------------------------------- /DStarRepeater/Common/Golay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Golay.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/Golay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Golay.h -------------------------------------------------------------------------------- /DStarRepeater/Common/HeaderData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/HeaderData.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/HeaderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/HeaderData.h -------------------------------------------------------------------------------- /DStarRepeater/Common/LogEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/LogEvent.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/LogEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/LogEvent.h -------------------------------------------------------------------------------- /DStarRepeater/Common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Logger.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Logger.h -------------------------------------------------------------------------------- /DStarRepeater/Common/Modem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Modem.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/Modem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Modem.h -------------------------------------------------------------------------------- /DStarRepeater/Common/OutputQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/OutputQueue.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/OutputQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/OutputQueue.h -------------------------------------------------------------------------------- /DStarRepeater/Common/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/RingBuffer.h -------------------------------------------------------------------------------- /DStarRepeater/Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Timer.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Timer.h -------------------------------------------------------------------------------- /DStarRepeater/Common/UDRCController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/UDRCController.h -------------------------------------------------------------------------------- /DStarRepeater/Common/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Utils.cpp -------------------------------------------------------------------------------- /DStarRepeater/Common/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Utils.h -------------------------------------------------------------------------------- /DStarRepeater/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/Version.h -------------------------------------------------------------------------------- /DStarRepeater/Common/lusb0_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Common/lusb0_usb.h -------------------------------------------------------------------------------- /DStarRepeater/DStarRepeater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/DStarRepeater.sln -------------------------------------------------------------------------------- /DStarRepeater/DStarRepeaterVS2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/DStarRepeaterVS2015.sln -------------------------------------------------------------------------------- /DStarRepeater/Data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/Makefile -------------------------------------------------------------------------------- /DStarRepeater/Data/de_DE.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/de_DE.ambe -------------------------------------------------------------------------------- /DStarRepeater/Data/de_DE.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/de_DE.indx -------------------------------------------------------------------------------- /DStarRepeater/Data/dk_DK.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/dk_DK.ambe -------------------------------------------------------------------------------- /DStarRepeater/Data/dk_DK.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/dk_DK.indx -------------------------------------------------------------------------------- /DStarRepeater/Data/en_GB.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/en_GB.ambe -------------------------------------------------------------------------------- /DStarRepeater/Data/en_GB.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/en_GB.indx -------------------------------------------------------------------------------- /DStarRepeater/Data/en_US.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/en_US.ambe -------------------------------------------------------------------------------- /DStarRepeater/Data/en_US.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/en_US.indx -------------------------------------------------------------------------------- /DStarRepeater/Data/es_ES.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/es_ES.ambe -------------------------------------------------------------------------------- /DStarRepeater/Data/es_ES.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/es_ES.indx -------------------------------------------------------------------------------- /DStarRepeater/Data/fr_FR.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/fr_FR.ambe -------------------------------------------------------------------------------- /DStarRepeater/Data/fr_FR.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/fr_FR.indx -------------------------------------------------------------------------------- /DStarRepeater/Data/it_IT.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/it_IT.ambe -------------------------------------------------------------------------------- /DStarRepeater/Data/it_IT.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/it_IT.indx -------------------------------------------------------------------------------- /DStarRepeater/Data/no_NO.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/no_NO.ambe -------------------------------------------------------------------------------- /DStarRepeater/Data/no_NO.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/no_NO.indx -------------------------------------------------------------------------------- /DStarRepeater/Data/pl_PL.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/pl_PL.ambe -------------------------------------------------------------------------------- /DStarRepeater/Data/pl_PL.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/pl_PL.indx -------------------------------------------------------------------------------- /DStarRepeater/Data/se_SE.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/se_SE.ambe -------------------------------------------------------------------------------- /DStarRepeater/Data/se_SE.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Data/se_SE.indx -------------------------------------------------------------------------------- /DStarRepeater/INSTALL: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.15/INSTALL -------------------------------------------------------------------------------- /DStarRepeater/LinuxUSB/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/LinuxUSB/Makefile.am -------------------------------------------------------------------------------- /DStarRepeater/LinuxUSB/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/LinuxUSB/Makefile.in -------------------------------------------------------------------------------- /DStarRepeater/LinuxUSB/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/LinuxUSB/README.txt -------------------------------------------------------------------------------- /DStarRepeater/LinuxUSB/rmk8055drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/LinuxUSB/rmk8055drv.c -------------------------------------------------------------------------------- /DStarRepeater/LinuxUSB/rmuridrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/LinuxUSB/rmuridrv.c -------------------------------------------------------------------------------- /DStarRepeater/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Makefile.am -------------------------------------------------------------------------------- /DStarRepeater/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/Makefile.in -------------------------------------------------------------------------------- /DStarRepeater/TODO.txt: -------------------------------------------------------------------------------- 1 | Add the new Icom slow data mode. 2 | -------------------------------------------------------------------------------- /DStarRepeater/WindowsUSB/gmsk.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/WindowsUSB/gmsk.cat -------------------------------------------------------------------------------- /DStarRepeater/WindowsUSB/gmsk.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/WindowsUSB/gmsk.inf -------------------------------------------------------------------------------- /DStarRepeater/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/aclocal.m4 -------------------------------------------------------------------------------- /DStarRepeater/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/ar-lib -------------------------------------------------------------------------------- /DStarRepeater/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/compile -------------------------------------------------------------------------------- /DStarRepeater/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/configure -------------------------------------------------------------------------------- /DStarRepeater/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/configure.ac -------------------------------------------------------------------------------- /DStarRepeater/debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/debian/README.Debian -------------------------------------------------------------------------------- /DStarRepeater/debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/debian/README.source -------------------------------------------------------------------------------- /DStarRepeater/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/debian/changelog -------------------------------------------------------------------------------- /DStarRepeater/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /DStarRepeater/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/debian/control -------------------------------------------------------------------------------- /DStarRepeater/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/debian/copyright -------------------------------------------------------------------------------- /DStarRepeater/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/debian/docs -------------------------------------------------------------------------------- /DStarRepeater/debian/dstarrepeaterd.examples: -------------------------------------------------------------------------------- 1 | linux/dstarrepeater_1.example 2 | -------------------------------------------------------------------------------- /DStarRepeater/debian/dstarrepeaterd.install: -------------------------------------------------------------------------------- 1 | usr/sbin/dstarrepeaterd 2 | -------------------------------------------------------------------------------- /DStarRepeater/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/debian/rules -------------------------------------------------------------------------------- /DStarRepeater/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /DStarRepeater/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/depcomp -------------------------------------------------------------------------------- /DStarRepeater/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/install-sh -------------------------------------------------------------------------------- /DStarRepeater/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DStarRepeater/missing -------------------------------------------------------------------------------- /Digital Voice.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice.nsi -------------------------------------------------------------------------------- /Digital Voice/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/BUILD.txt -------------------------------------------------------------------------------- /Digital Voice/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/CHANGES.txt -------------------------------------------------------------------------------- /Digital Voice/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/COPYING.txt -------------------------------------------------------------------------------- /Digital Voice/Common/AudioCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/AudioCallback.h -------------------------------------------------------------------------------- /Digital Voice/Common/AudioDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/AudioDelay.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/AudioDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/AudioDelay.h -------------------------------------------------------------------------------- /Digital Voice/Common/BleepSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/BleepSet.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/BleepSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/BleepSet.h -------------------------------------------------------------------------------- /Digital Voice/Common/Bleeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Bleeper.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/Bleeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Bleeper.h -------------------------------------------------------------------------------- /Digital Voice/Common/BusyData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/BusyData.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/BusyData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/BusyData.h -------------------------------------------------------------------------------- /Digital Voice/Common/BusyEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/BusyEvent.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/BusyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/BusyEvent.h -------------------------------------------------------------------------------- /Digital Voice/Common/CCITTChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/CCITTChecksum.h -------------------------------------------------------------------------------- /Digital Voice/Common/Common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Common.vcproj -------------------------------------------------------------------------------- /Digital Voice/Common/DStarDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/DStarDefines.h -------------------------------------------------------------------------------- /Digital Voice/Common/DStarScrambler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/DStarScrambler.h -------------------------------------------------------------------------------- /Digital Voice/Common/DVAPController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/DVAPController.h -------------------------------------------------------------------------------- /Digital Voice/Common/DVDongleSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/DVDongleSet.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/DVDongleSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/DVDongleSet.h -------------------------------------------------------------------------------- /Digital Voice/Common/DVDongleThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/DVDongleThread.h -------------------------------------------------------------------------------- /Digital Voice/Common/Demodulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Demodulator.h -------------------------------------------------------------------------------- /Digital Voice/Common/ErrorEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/ErrorEvent.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/ErrorEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/ErrorEvent.h -------------------------------------------------------------------------------- /Digital Voice/Common/FECDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/FECDecoder.h -------------------------------------------------------------------------------- /Digital Voice/Common/FECEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/FECEncoder.h -------------------------------------------------------------------------------- /Digital Voice/Common/FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/FIRFilter.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/FIRFilter.h -------------------------------------------------------------------------------- /Digital Voice/Common/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Filter.h -------------------------------------------------------------------------------- /Digital Voice/Common/GMSKModem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/GMSKModem.h -------------------------------------------------------------------------------- /Digital Voice/Common/HeaderData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/HeaderData.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/HeaderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/HeaderData.h -------------------------------------------------------------------------------- /Digital Voice/Common/HeaderEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/HeaderEvent.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/HeaderEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/HeaderEvent.h -------------------------------------------------------------------------------- /Digital Voice/Common/Interleaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Interleaver.h -------------------------------------------------------------------------------- /Digital Voice/Common/InversionSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/InversionSet.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/InversionSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/InversionSet.h -------------------------------------------------------------------------------- /Digital Voice/Common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Logger.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Logger.h -------------------------------------------------------------------------------- /Digital Voice/Common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Makefile -------------------------------------------------------------------------------- /Digital Voice/Common/MessageData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/MessageData.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/MessageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/MessageData.h -------------------------------------------------------------------------------- /Digital Voice/Common/MessageEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/MessageEvent.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/MessageEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/MessageEvent.h -------------------------------------------------------------------------------- /Digital Voice/Common/MessageSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/MessageSet.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/MessageSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/MessageSet.h -------------------------------------------------------------------------------- /Digital Voice/Common/Modulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Modulator.h -------------------------------------------------------------------------------- /Digital Voice/Common/PTTDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/PTTDelay.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/PTTDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/PTTDelay.h -------------------------------------------------------------------------------- /Digital Voice/Common/PatternMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/PatternMatcher.h -------------------------------------------------------------------------------- /Digital Voice/Common/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/RingBuffer.h -------------------------------------------------------------------------------- /Digital Voice/Common/Scrambler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Scrambler.h -------------------------------------------------------------------------------- /Digital Voice/Common/SoundcardSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/SoundcardSet.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/SoundcardSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/SoundcardSet.h -------------------------------------------------------------------------------- /Digital Voice/Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Timer.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Timer.h -------------------------------------------------------------------------------- /Digital Voice/Common/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Utils.cpp -------------------------------------------------------------------------------- /Digital Voice/Common/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Utils.h -------------------------------------------------------------------------------- /Digital Voice/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/Version.h -------------------------------------------------------------------------------- /Digital Voice/Common/WAVFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/WAVFileReader.h -------------------------------------------------------------------------------- /Digital Voice/Common/WAVFileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/WAVFileWriter.h -------------------------------------------------------------------------------- /Digital Voice/Common/lusb0_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Common/lusb0_usb.h -------------------------------------------------------------------------------- /Digital Voice/DCSClient/DCSClient.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/DCSClient/DCSClient.ico -------------------------------------------------------------------------------- /Digital Voice/DCSClient/DCSClient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/DCSClient/DCSClient.rc -------------------------------------------------------------------------------- /Digital Voice/DCSClient/DCSClient.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/DCSClient/DCSClient.xpm -------------------------------------------------------------------------------- /Digital Voice/DCSClient/DCS_Hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/DCSClient/DCS_Hosts.txt -------------------------------------------------------------------------------- /Digital Voice/DCSClient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/DCSClient/Makefile -------------------------------------------------------------------------------- /Digital Voice/DExtraClient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/DExtraClient/Makefile -------------------------------------------------------------------------------- /Digital Voice/DVAPClient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/DVAPClient/Makefile -------------------------------------------------------------------------------- /Digital Voice/DVRPTRClient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/DVRPTRClient/Makefile -------------------------------------------------------------------------------- /Digital Voice/DVToolReader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/DVToolReader/Makefile -------------------------------------------------------------------------------- /Digital Voice/Digital Voice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Digital Voice.sln -------------------------------------------------------------------------------- /Digital Voice/GMSKClient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/GMSKClient/Makefile -------------------------------------------------------------------------------- /Digital Voice/LinuxUSB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/LinuxUSB/Makefile -------------------------------------------------------------------------------- /Digital Voice/LinuxUSB/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/LinuxUSB/README.txt -------------------------------------------------------------------------------- /Digital Voice/LinuxUSB/rmk8055drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/LinuxUSB/rmk8055drv.c -------------------------------------------------------------------------------- /Digital Voice/LinuxUSB/rmuridrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/LinuxUSB/rmuridrv.c -------------------------------------------------------------------------------- /Digital Voice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/Makefile -------------------------------------------------------------------------------- /Digital Voice/USAGE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/USAGE.txt -------------------------------------------------------------------------------- /Digital Voice/WindowsUSB/gmsk.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/WindowsUSB/gmsk.cat -------------------------------------------------------------------------------- /Digital Voice/WindowsUSB/gmsk.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/WindowsUSB/gmsk.inf -------------------------------------------------------------------------------- /Digital Voice/package.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Digital Voice/package_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/package_default.mk -------------------------------------------------------------------------------- /Digital Voice/settings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/settings.mk -------------------------------------------------------------------------------- /Digital Voice/settings_debian_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/settings_debian_arm.mk -------------------------------------------------------------------------------- /Digital Voice/settings_debian_i386.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/settings_debian_i386.mk -------------------------------------------------------------------------------- /Digital Voice/settings_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/settings_default.mk -------------------------------------------------------------------------------- /Digital Voice/settings_rpi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Digital Voice/settings_rpi.mk -------------------------------------------------------------------------------- /Documentation/D-Star Repeater-ENG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Documentation/D-Star Repeater-ENG.pdf -------------------------------------------------------------------------------- /Documentation/Gateway-DEU.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Documentation/Gateway-DEU.docx -------------------------------------------------------------------------------- /Documentation/Gateway-DEU.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Documentation/Gateway-DEU.pdf -------------------------------------------------------------------------------- /Documentation/Gateway-ENG.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Documentation/Gateway-ENG.docx -------------------------------------------------------------------------------- /Documentation/Gateway-ENG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Documentation/Gateway-ENG.pdf -------------------------------------------------------------------------------- /Documentation/Repeater-ENG.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Documentation/Repeater-ENG.docx -------------------------------------------------------------------------------- /Documentation/Repeater-ENG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/Documentation/Repeater-ENG.pdf -------------------------------------------------------------------------------- /DummyRepeater.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater.nsi -------------------------------------------------------------------------------- /DummyRepeater/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/.gitignore -------------------------------------------------------------------------------- /DummyRepeater/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/BUILD.txt -------------------------------------------------------------------------------- /DummyRepeater/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/CHANGES.txt -------------------------------------------------------------------------------- /DummyRepeater/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/COPYING.txt -------------------------------------------------------------------------------- /DummyRepeater/Common/AudioCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/AudioCallback.h -------------------------------------------------------------------------------- /DummyRepeater/Common/AudioDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/AudioDelay.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/Bleeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/Bleeper.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/Bleeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/Bleeper.h -------------------------------------------------------------------------------- /DummyRepeater/Common/Common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/Common.vcproj -------------------------------------------------------------------------------- /DummyRepeater/Common/Common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/Common.vcxproj -------------------------------------------------------------------------------- /DummyRepeater/Common/DStarDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/DStarDefines.h -------------------------------------------------------------------------------- /DummyRepeater/Common/DV3000Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/DV3000Thread.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/DV3000Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/DV3000Thread.h -------------------------------------------------------------------------------- /DummyRepeater/Common/DVDongleThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/DVDongleThread.h -------------------------------------------------------------------------------- /DummyRepeater/Common/DecodeCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/DecodeCallback.h -------------------------------------------------------------------------------- /DummyRepeater/Common/DongleThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/DongleThread.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/DongleThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/DongleThread.h -------------------------------------------------------------------------------- /DummyRepeater/Common/EncodeCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/EncodeCallback.h -------------------------------------------------------------------------------- /DummyRepeater/Common/FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/FIRFilter.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/FIRFilter.h -------------------------------------------------------------------------------- /DummyRepeater/Common/GPIOController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/GPIOController.h -------------------------------------------------------------------------------- /DummyRepeater/Common/HeaderData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/HeaderData.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/HeaderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/HeaderData.h -------------------------------------------------------------------------------- /DummyRepeater/Common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/Logger.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/Logger.h -------------------------------------------------------------------------------- /DummyRepeater/Common/MessageData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/MessageData.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/MessageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/MessageData.h -------------------------------------------------------------------------------- /DummyRepeater/Common/PortTextCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/PortTextCtrl.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/PortTextCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/PortTextCtrl.h -------------------------------------------------------------------------------- /DummyRepeater/Common/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/RingBuffer.h -------------------------------------------------------------------------------- /DummyRepeater/Common/STARDVThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/STARDVThread.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/STARDVThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/STARDVThread.h -------------------------------------------------------------------------------- /DummyRepeater/Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/Timer.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/Timer.h -------------------------------------------------------------------------------- /DummyRepeater/Common/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/Utils.cpp -------------------------------------------------------------------------------- /DummyRepeater/Common/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/Utils.h -------------------------------------------------------------------------------- /DummyRepeater/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Common/Version.h -------------------------------------------------------------------------------- /DummyRepeater/DV3000/AMBEserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/DV3000/AMBEserver.c -------------------------------------------------------------------------------- /DummyRepeater/DV3000/AMBEtest2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/DV3000/AMBEtest2.py -------------------------------------------------------------------------------- /DummyRepeater/DV3000/AMBEtest3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/DV3000/AMBEtest3.py -------------------------------------------------------------------------------- /DummyRepeater/DV3000/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/DV3000/README.txt -------------------------------------------------------------------------------- /DummyRepeater/DV3000/ambesocktest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/DV3000/ambesocktest.py -------------------------------------------------------------------------------- /DummyRepeater/DV3000/dv3000d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/DV3000/dv3000d.c -------------------------------------------------------------------------------- /DummyRepeater/DV3000/init.d/dv3000d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/DV3000/init.d/dv3000d -------------------------------------------------------------------------------- /DummyRepeater/DummyRepeater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/DummyRepeater.sln -------------------------------------------------------------------------------- /DummyRepeater/DummyRepeaterVS2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/DummyRepeaterVS2015.sln -------------------------------------------------------------------------------- /DummyRepeater/LinuxUSB/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/LinuxUSB/README.txt -------------------------------------------------------------------------------- /DummyRepeater/LinuxUSB/rmk8055drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/LinuxUSB/rmk8055drv.c -------------------------------------------------------------------------------- /DummyRepeater/LinuxUSB/rmuridrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/LinuxUSB/rmuridrv.c -------------------------------------------------------------------------------- /DummyRepeater/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Makefile.am -------------------------------------------------------------------------------- /DummyRepeater/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/Makefile.in -------------------------------------------------------------------------------- /DummyRepeater/STARDV/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/STARDV/README.TXT -------------------------------------------------------------------------------- /DummyRepeater/STARDV/WinTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/STARDV/WinTypes.h -------------------------------------------------------------------------------- /DummyRepeater/STARDV/dvemu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/STARDV/dvemu.cpp -------------------------------------------------------------------------------- /DummyRepeater/STARDV/dvemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/STARDV/dvemu.h -------------------------------------------------------------------------------- /DummyRepeater/STARDV/ftd2xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/STARDV/ftd2xx.h -------------------------------------------------------------------------------- /DummyRepeater/STARDV/sdvtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/STARDV/sdvtools.cpp -------------------------------------------------------------------------------- /DummyRepeater/STARDV/sdvtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/STARDV/sdvtools.h -------------------------------------------------------------------------------- /DummyRepeater/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/aclocal.m4 -------------------------------------------------------------------------------- /DummyRepeater/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/ar-lib -------------------------------------------------------------------------------- /DummyRepeater/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/compile -------------------------------------------------------------------------------- /DummyRepeater/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/configure -------------------------------------------------------------------------------- /DummyRepeater/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/configure.ac -------------------------------------------------------------------------------- /DummyRepeater/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/debian/changelog -------------------------------------------------------------------------------- /DummyRepeater/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /DummyRepeater/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/debian/control -------------------------------------------------------------------------------- /DummyRepeater/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/debian/copyright -------------------------------------------------------------------------------- /DummyRepeater/debian/dummyrepeater.install: -------------------------------------------------------------------------------- 1 | usr/bin/dummyrepeater 2 | -------------------------------------------------------------------------------- /DummyRepeater/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/debian/rules -------------------------------------------------------------------------------- /DummyRepeater/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /DummyRepeater/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/depcomp -------------------------------------------------------------------------------- /DummyRepeater/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/install-sh -------------------------------------------------------------------------------- /DummyRepeater/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/DummyRepeater/missing -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/LICENSE -------------------------------------------------------------------------------- /LinuxExtras/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/LinuxExtras/CHANGES.txt -------------------------------------------------------------------------------- /LinuxExtras/CentOS/XReflector/etc/default/xreflector_conf: -------------------------------------------------------------------------------- 1 | # to be developed 2 | -------------------------------------------------------------------------------- /LinuxExtras/CentOS/ircDDBGateway/var/www/html/opendv-1.hlp: -------------------------------------------------------------------------------- 1 | # dummy helpfile 2 | # index 1: english language 3 | -------------------------------------------------------------------------------- /LinuxExtras/Debian/ircDDBGateway/var/www/opendv-1.hlp: -------------------------------------------------------------------------------- 1 | # dummy helpfile 2 | # index 1: english language 3 | -------------------------------------------------------------------------------- /LinuxExtras/KNOWN_ISSUES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/LinuxExtras/KNOWN_ISSUES.txt -------------------------------------------------------------------------------- /LinuxExtras/Raspbian/ircDDBGateway/var/www/opendv-1.hlp: -------------------------------------------------------------------------------- 1 | # dummy helpfile 2 | # index 1: english language 3 | -------------------------------------------------------------------------------- /LinuxExtras/TODOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/LinuxExtras/TODOS.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/README.md -------------------------------------------------------------------------------- /RepeaterExtras.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras.nsi -------------------------------------------------------------------------------- /RepeaterExtras/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/BUILD.txt -------------------------------------------------------------------------------- /RepeaterExtras/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/CHANGES.txt -------------------------------------------------------------------------------- /RepeaterExtras/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/COPYING.txt -------------------------------------------------------------------------------- /RepeaterExtras/Common/Common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/Common.vcproj -------------------------------------------------------------------------------- /RepeaterExtras/Common/DStarDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/DStarDefines.h -------------------------------------------------------------------------------- /RepeaterExtras/Common/HeaderData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/HeaderData.cpp -------------------------------------------------------------------------------- /RepeaterExtras/Common/HeaderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/HeaderData.h -------------------------------------------------------------------------------- /RepeaterExtras/Common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/Logger.cpp -------------------------------------------------------------------------------- /RepeaterExtras/Common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/Logger.h -------------------------------------------------------------------------------- /RepeaterExtras/Common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/Makefile -------------------------------------------------------------------------------- /RepeaterExtras/Common/PortTextCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/PortTextCtrl.h -------------------------------------------------------------------------------- /RepeaterExtras/Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/Timer.cpp -------------------------------------------------------------------------------- /RepeaterExtras/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/Timer.h -------------------------------------------------------------------------------- /RepeaterExtras/Common/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/Utils.cpp -------------------------------------------------------------------------------- /RepeaterExtras/Common/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/Utils.h -------------------------------------------------------------------------------- /RepeaterExtras/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Common/Version.h -------------------------------------------------------------------------------- /RepeaterExtras/DCSGateway/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/DCSGateway/Makefile -------------------------------------------------------------------------------- /RepeaterExtras/DExtraGateway/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/DExtraGateway/Makefile -------------------------------------------------------------------------------- /RepeaterExtras/Data/DCS_Hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/DCS_Hosts.txt -------------------------------------------------------------------------------- /RepeaterExtras/Data/DExtra_Hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/DExtra_Hosts.txt -------------------------------------------------------------------------------- /RepeaterExtras/Data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/Makefile -------------------------------------------------------------------------------- /RepeaterExtras/Data/de_DE.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/de_DE.ambe -------------------------------------------------------------------------------- /RepeaterExtras/Data/de_DE.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/de_DE.indx -------------------------------------------------------------------------------- /RepeaterExtras/Data/dk_DK.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/dk_DK.ambe -------------------------------------------------------------------------------- /RepeaterExtras/Data/dk_DK.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/dk_DK.indx -------------------------------------------------------------------------------- /RepeaterExtras/Data/en_GB.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/en_GB.ambe -------------------------------------------------------------------------------- /RepeaterExtras/Data/en_GB.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/en_GB.indx -------------------------------------------------------------------------------- /RepeaterExtras/Data/en_US.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/en_US.ambe -------------------------------------------------------------------------------- /RepeaterExtras/Data/en_US.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/en_US.indx -------------------------------------------------------------------------------- /RepeaterExtras/Data/es_ES.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/es_ES.ambe -------------------------------------------------------------------------------- /RepeaterExtras/Data/es_ES.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/es_ES.indx -------------------------------------------------------------------------------- /RepeaterExtras/Data/fr_FR.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/fr_FR.ambe -------------------------------------------------------------------------------- /RepeaterExtras/Data/fr_FR.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/fr_FR.indx -------------------------------------------------------------------------------- /RepeaterExtras/Data/it_IT.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/it_IT.ambe -------------------------------------------------------------------------------- /RepeaterExtras/Data/it_IT.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/it_IT.indx -------------------------------------------------------------------------------- /RepeaterExtras/Data/no_NO.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/no_NO.ambe -------------------------------------------------------------------------------- /RepeaterExtras/Data/no_NO.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/no_NO.indx -------------------------------------------------------------------------------- /RepeaterExtras/Data/pl_PL.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/pl_PL.ambe -------------------------------------------------------------------------------- /RepeaterExtras/Data/pl_PL.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/pl_PL.indx -------------------------------------------------------------------------------- /RepeaterExtras/Data/se_SE.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/se_SE.ambe -------------------------------------------------------------------------------- /RepeaterExtras/Data/se_SE.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Data/se_SE.indx -------------------------------------------------------------------------------- /RepeaterExtras/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/Makefile -------------------------------------------------------------------------------- /RepeaterExtras/RepeaterExtras.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/RepeaterExtras.sln -------------------------------------------------------------------------------- /RepeaterExtras/package.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RepeaterExtras/package_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/package_default.mk -------------------------------------------------------------------------------- /RepeaterExtras/settings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/settings.mk -------------------------------------------------------------------------------- /RepeaterExtras/settings_debian_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/settings_debian_arm.mk -------------------------------------------------------------------------------- /RepeaterExtras/settings_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/settings_default.mk -------------------------------------------------------------------------------- /RepeaterExtras/settings_rpi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/RepeaterExtras/settings_rpi.mk -------------------------------------------------------------------------------- /XReflector.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector.nsi -------------------------------------------------------------------------------- /XReflector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/.gitignore -------------------------------------------------------------------------------- /XReflector/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/BUILD.txt -------------------------------------------------------------------------------- /XReflector/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/CHANGES.txt -------------------------------------------------------------------------------- /XReflector/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/COPYING.txt -------------------------------------------------------------------------------- /XReflector/Common/AMBEData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/AMBEData.cpp -------------------------------------------------------------------------------- /XReflector/Common/AMBEData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/AMBEData.h -------------------------------------------------------------------------------- /XReflector/Common/APRSCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/APRSCollector.cpp -------------------------------------------------------------------------------- /XReflector/Common/APRSCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/APRSCollector.h -------------------------------------------------------------------------------- /XReflector/Common/APRSWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/APRSWriter.cpp -------------------------------------------------------------------------------- /XReflector/Common/APRSWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/APRSWriter.h -------------------------------------------------------------------------------- /XReflector/Common/APRSWriterThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/APRSWriterThread.h -------------------------------------------------------------------------------- /XReflector/Common/AddressTextCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/AddressTextCtrl.cpp -------------------------------------------------------------------------------- /XReflector/Common/AddressTextCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/AddressTextCtrl.h -------------------------------------------------------------------------------- /XReflector/Common/AudioUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/AudioUnit.cpp -------------------------------------------------------------------------------- /XReflector/Common/AudioUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/AudioUnit.h -------------------------------------------------------------------------------- /XReflector/Common/CCITTChecksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/CCITTChecksum.cpp -------------------------------------------------------------------------------- /XReflector/Common/CCITTChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/CCITTChecksum.h -------------------------------------------------------------------------------- /XReflector/Common/CCSHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/CCSHandler.cpp -------------------------------------------------------------------------------- /XReflector/Common/CCSHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/CCSHandler.h -------------------------------------------------------------------------------- /XReflector/Common/CacheManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/CacheManager.cpp -------------------------------------------------------------------------------- /XReflector/Common/CacheManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/CacheManager.h -------------------------------------------------------------------------------- /XReflector/Common/CallsignServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/CallsignServer.cpp -------------------------------------------------------------------------------- /XReflector/Common/CallsignServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/CallsignServer.h -------------------------------------------------------------------------------- /XReflector/Common/CallsignTextCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/CallsignTextCtrl.h -------------------------------------------------------------------------------- /XReflector/Common/Checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/Checksum.h -------------------------------------------------------------------------------- /XReflector/Common/Common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/Common.vcproj -------------------------------------------------------------------------------- /XReflector/Common/ConnectData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/ConnectData.cpp -------------------------------------------------------------------------------- /XReflector/Common/ConnectData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/ConnectData.h -------------------------------------------------------------------------------- /XReflector/Common/DCSHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DCSHandler.cpp -------------------------------------------------------------------------------- /XReflector/Common/DCSHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DCSHandler.h -------------------------------------------------------------------------------- /XReflector/Common/DCSSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DCSSet.cpp -------------------------------------------------------------------------------- /XReflector/Common/DCSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DCSSet.h -------------------------------------------------------------------------------- /XReflector/Common/DDData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DDData.cpp -------------------------------------------------------------------------------- /XReflector/Common/DDData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DDData.h -------------------------------------------------------------------------------- /XReflector/Common/DDHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DDHandler.cpp -------------------------------------------------------------------------------- /XReflector/Common/DDHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DDHandler.h -------------------------------------------------------------------------------- /XReflector/Common/DExtraHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DExtraHandler.cpp -------------------------------------------------------------------------------- /XReflector/Common/DExtraHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DExtraHandler.h -------------------------------------------------------------------------------- /XReflector/Common/DExtraSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DExtraSet.cpp -------------------------------------------------------------------------------- /XReflector/Common/DExtraSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DExtraSet.h -------------------------------------------------------------------------------- /XReflector/Common/DPRSSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DPRSSet.cpp -------------------------------------------------------------------------------- /XReflector/Common/DPRSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DPRSSet.h -------------------------------------------------------------------------------- /XReflector/Common/DPlusHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DPlusHandler.cpp -------------------------------------------------------------------------------- /XReflector/Common/DPlusHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DPlusHandler.h -------------------------------------------------------------------------------- /XReflector/Common/DPlusSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DPlusSet.cpp -------------------------------------------------------------------------------- /XReflector/Common/DPlusSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DPlusSet.h -------------------------------------------------------------------------------- /XReflector/Common/DRATSServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DRATSServer.cpp -------------------------------------------------------------------------------- /XReflector/Common/DRATSServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DRATSServer.h -------------------------------------------------------------------------------- /XReflector/Common/DStarDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DStarDefines.h -------------------------------------------------------------------------------- /XReflector/Common/DTMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DTMF.cpp -------------------------------------------------------------------------------- /XReflector/Common/DTMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/DTMF.h -------------------------------------------------------------------------------- /XReflector/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/Defs.h -------------------------------------------------------------------------------- /XReflector/Common/EchoUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/EchoUnit.cpp -------------------------------------------------------------------------------- /XReflector/Common/EchoUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/EchoUnit.h -------------------------------------------------------------------------------- /XReflector/Common/G2Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/G2Handler.cpp -------------------------------------------------------------------------------- /XReflector/Common/G2Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/G2Handler.h -------------------------------------------------------------------------------- /XReflector/Common/G2ProtocolHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/G2ProtocolHandler.h -------------------------------------------------------------------------------- /XReflector/Common/GatewayCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/GatewayCache.cpp -------------------------------------------------------------------------------- /XReflector/Common/GatewayCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/GatewayCache.h -------------------------------------------------------------------------------- /XReflector/Common/HeaderData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/HeaderData.cpp -------------------------------------------------------------------------------- /XReflector/Common/HeaderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/HeaderData.h -------------------------------------------------------------------------------- /XReflector/Common/HeaderLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/HeaderLogger.cpp -------------------------------------------------------------------------------- /XReflector/Common/HeaderLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/HeaderLogger.h -------------------------------------------------------------------------------- /XReflector/Common/HeardData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/HeardData.cpp -------------------------------------------------------------------------------- /XReflector/Common/HeardData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/HeardData.h -------------------------------------------------------------------------------- /XReflector/Common/HostFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/HostFile.cpp -------------------------------------------------------------------------------- /XReflector/Common/HostFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/HostFile.h -------------------------------------------------------------------------------- /XReflector/Common/LogEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/LogEvent.cpp -------------------------------------------------------------------------------- /XReflector/Common/LogEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/LogEvent.h -------------------------------------------------------------------------------- /XReflector/Common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/Logger.cpp -------------------------------------------------------------------------------- /XReflector/Common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/Logger.h -------------------------------------------------------------------------------- /XReflector/Common/PollData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/PollData.cpp -------------------------------------------------------------------------------- /XReflector/Common/PollData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/PollData.h -------------------------------------------------------------------------------- /XReflector/Common/PortTextCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/PortTextCtrl.cpp -------------------------------------------------------------------------------- /XReflector/Common/PortTextCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/PortTextCtrl.h -------------------------------------------------------------------------------- /XReflector/Common/ReflectorCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/ReflectorCallback.h -------------------------------------------------------------------------------- /XReflector/Common/RemoteHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RemoteHandler.cpp -------------------------------------------------------------------------------- /XReflector/Common/RemoteHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RemoteHandler.h -------------------------------------------------------------------------------- /XReflector/Common/RemoteLinkData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RemoteLinkData.cpp -------------------------------------------------------------------------------- /XReflector/Common/RemoteLinkData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RemoteLinkData.h -------------------------------------------------------------------------------- /XReflector/Common/RemoteSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RemoteSet.cpp -------------------------------------------------------------------------------- /XReflector/Common/RemoteSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RemoteSet.h -------------------------------------------------------------------------------- /XReflector/Common/RemoteStarNetUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RemoteStarNetUser.h -------------------------------------------------------------------------------- /XReflector/Common/RepeaterCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RepeaterCache.cpp -------------------------------------------------------------------------------- /XReflector/Common/RepeaterCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RepeaterCache.h -------------------------------------------------------------------------------- /XReflector/Common/RepeaterCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RepeaterCallback.h -------------------------------------------------------------------------------- /XReflector/Common/RepeaterDataSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RepeaterDataSet.cpp -------------------------------------------------------------------------------- /XReflector/Common/RepeaterDataSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RepeaterDataSet.h -------------------------------------------------------------------------------- /XReflector/Common/RepeaterHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RepeaterHandler.cpp -------------------------------------------------------------------------------- /XReflector/Common/RepeaterHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RepeaterHandler.h -------------------------------------------------------------------------------- /XReflector/Common/RepeaterInfoSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RepeaterInfoSet.cpp -------------------------------------------------------------------------------- /XReflector/Common/RepeaterInfoSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RepeaterInfoSet.h -------------------------------------------------------------------------------- /XReflector/Common/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/RingBuffer.h -------------------------------------------------------------------------------- /XReflector/Common/SHA256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/SHA256.cpp -------------------------------------------------------------------------------- /XReflector/Common/SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/SHA256.h -------------------------------------------------------------------------------- /XReflector/Common/SlowDataEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/SlowDataEncoder.cpp -------------------------------------------------------------------------------- /XReflector/Common/SlowDataEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/SlowDataEncoder.h -------------------------------------------------------------------------------- /XReflector/Common/StarNetHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/StarNetHandler.cpp -------------------------------------------------------------------------------- /XReflector/Common/StarNetHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/StarNetHandler.h -------------------------------------------------------------------------------- /XReflector/Common/StarNetSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/StarNetSet.cpp -------------------------------------------------------------------------------- /XReflector/Common/StarNetSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/StarNetSet.h -------------------------------------------------------------------------------- /XReflector/Common/StatusData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/StatusData.cpp -------------------------------------------------------------------------------- /XReflector/Common/StatusData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/StatusData.h -------------------------------------------------------------------------------- /XReflector/Common/TextCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/TextCollector.cpp -------------------------------------------------------------------------------- /XReflector/Common/TextCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/TextCollector.h -------------------------------------------------------------------------------- /XReflector/Common/TextData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/TextData.cpp -------------------------------------------------------------------------------- /XReflector/Common/TextData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/TextData.h -------------------------------------------------------------------------------- /XReflector/Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/Timer.cpp -------------------------------------------------------------------------------- /XReflector/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/Timer.h -------------------------------------------------------------------------------- /XReflector/Common/UDPReaderWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/UDPReaderWriter.cpp -------------------------------------------------------------------------------- /XReflector/Common/UDPReaderWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/UDPReaderWriter.h -------------------------------------------------------------------------------- /XReflector/Common/UserCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/UserCache.cpp -------------------------------------------------------------------------------- /XReflector/Common/UserCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/UserCache.h -------------------------------------------------------------------------------- /XReflector/Common/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/Utils.cpp -------------------------------------------------------------------------------- /XReflector/Common/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/Utils.h -------------------------------------------------------------------------------- /XReflector/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/Version.h -------------------------------------------------------------------------------- /XReflector/Common/VersionUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/VersionUnit.cpp -------------------------------------------------------------------------------- /XReflector/Common/VersionUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Common/VersionUnit.h -------------------------------------------------------------------------------- /XReflector/Data/DCS_Hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/DCS_Hosts.txt -------------------------------------------------------------------------------- /XReflector/Data/DExtra_Hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/DExtra_Hosts.txt -------------------------------------------------------------------------------- /XReflector/Data/de_DE.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/de_DE.ambe -------------------------------------------------------------------------------- /XReflector/Data/de_DE.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/de_DE.indx -------------------------------------------------------------------------------- /XReflector/Data/dk_DK.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/dk_DK.ambe -------------------------------------------------------------------------------- /XReflector/Data/dk_DK.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/dk_DK.indx -------------------------------------------------------------------------------- /XReflector/Data/en_GB.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/en_GB.ambe -------------------------------------------------------------------------------- /XReflector/Data/en_GB.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/en_GB.indx -------------------------------------------------------------------------------- /XReflector/Data/en_US.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/en_US.ambe -------------------------------------------------------------------------------- /XReflector/Data/en_US.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/en_US.indx -------------------------------------------------------------------------------- /XReflector/Data/es_ES.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/es_ES.ambe -------------------------------------------------------------------------------- /XReflector/Data/es_ES.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/es_ES.indx -------------------------------------------------------------------------------- /XReflector/Data/fr_FR.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/fr_FR.ambe -------------------------------------------------------------------------------- /XReflector/Data/fr_FR.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/fr_FR.indx -------------------------------------------------------------------------------- /XReflector/Data/it_IT.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/it_IT.ambe -------------------------------------------------------------------------------- /XReflector/Data/it_IT.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/it_IT.indx -------------------------------------------------------------------------------- /XReflector/Data/no_NO.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/no_NO.ambe -------------------------------------------------------------------------------- /XReflector/Data/no_NO.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/no_NO.indx -------------------------------------------------------------------------------- /XReflector/Data/pl_PL.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/pl_PL.ambe -------------------------------------------------------------------------------- /XReflector/Data/pl_PL.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/pl_PL.indx -------------------------------------------------------------------------------- /XReflector/Data/se_SE.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/se_SE.ambe -------------------------------------------------------------------------------- /XReflector/Data/se_SE.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Data/se_SE.indx -------------------------------------------------------------------------------- /XReflector/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Makefile.am -------------------------------------------------------------------------------- /XReflector/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/Makefile.in -------------------------------------------------------------------------------- /XReflector/XReflector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/XReflector.sln -------------------------------------------------------------------------------- /XReflector/XReflector/XReflectorApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/XReflector/XReflectorApp.h -------------------------------------------------------------------------------- /XReflector/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/aclocal.m4 -------------------------------------------------------------------------------- /XReflector/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ar-lib -------------------------------------------------------------------------------- /XReflector/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/compile -------------------------------------------------------------------------------- /XReflector/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/configure -------------------------------------------------------------------------------- /XReflector/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/configure.ac -------------------------------------------------------------------------------- /XReflector/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/depcomp -------------------------------------------------------------------------------- /XReflector/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/install-sh -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCApplication.h -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCClient.cpp -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCClient.h -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCDDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCDDB.cpp -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCDDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCDDB.h -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCDDBApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCDDBApp.cpp -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCDDBApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCDDBApp.h -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCMessage.cpp -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCMessage.h -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCMessageQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCMessageQueue.cpp -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCMessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCMessageQueue.h -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCProtocol.cpp -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCProtocol.h -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCReceiver.cpp -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCReceiver.h -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCutils.cpp -------------------------------------------------------------------------------- /XReflector/ircDDB/IRCutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/IRCutils.h -------------------------------------------------------------------------------- /XReflector/ircDDB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/LICENSE -------------------------------------------------------------------------------- /XReflector/ircDDB/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XReflector/ircDDB/ircDDB.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/ircDDB/ircDDB.vcproj -------------------------------------------------------------------------------- /XReflector/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflector/missing -------------------------------------------------------------------------------- /XReflectorDaemon/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/BUILD.txt -------------------------------------------------------------------------------- /XReflectorDaemon/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/CHANGES.txt -------------------------------------------------------------------------------- /XReflectorDaemon/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/COPYING.txt -------------------------------------------------------------------------------- /XReflectorDaemon/Common/AMBEData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/AMBEData.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/AMBEData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/AMBEData.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/APRSWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/APRSWriter.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/AudioUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/AudioUnit.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/AudioUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/AudioUnit.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/CCSHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/CCSHandler.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/Checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/Checksum.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/Common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/Common.vcproj -------------------------------------------------------------------------------- /XReflectorDaemon/Common/ConnectData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/ConnectData.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DCSHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DCSHandler.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DCSSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DCSSet.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DCSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DCSSet.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DDData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DDData.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DDData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DDData.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DDHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DDHandler.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DDHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DDHandler.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DExtraSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DExtraSet.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DExtraSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DExtraSet.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DPRSSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DPRSSet.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DPRSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DPRSSet.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DPlusSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DPlusSet.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DPlusSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DPlusSet.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DRATSServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DRATSServer.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DTMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DTMF.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/DTMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/DTMF.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/Defs.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/EchoUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/EchoUnit.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/EchoUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/EchoUnit.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/G2Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/G2Handler.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/G2Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/G2Handler.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/HeaderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/HeaderData.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/HeardData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/HeardData.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/HeardData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/HeardData.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/HostFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/HostFile.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/HostFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/HostFile.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/LogEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/LogEvent.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/LogEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/LogEvent.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/Logger.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/Logger.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/Makefile -------------------------------------------------------------------------------- /XReflectorDaemon/Common/PollData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/PollData.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/PollData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/PollData.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/RemoteSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/RemoteSet.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/RemoteSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/RemoteSet.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/RingBuffer.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/SHA256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/SHA256.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/SHA256.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/StarNetSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/StarNetSet.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/StatusData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/StatusData.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/TextData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/TextData.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/TextData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/TextData.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/Timer.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/Timer.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/UserCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/UserCache.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/UserCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/UserCache.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/Utils.cpp -------------------------------------------------------------------------------- /XReflectorDaemon/Common/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/Utils.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/Version.h -------------------------------------------------------------------------------- /XReflectorDaemon/Common/VersionUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Common/VersionUnit.h -------------------------------------------------------------------------------- /XReflectorDaemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/Makefile -------------------------------------------------------------------------------- /XReflectorDaemon/XReflector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/XReflector.sln -------------------------------------------------------------------------------- /XReflectorDaemon/XReflectorD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/XReflectorD/Makefile -------------------------------------------------------------------------------- /XReflectorDaemon/package.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XReflectorDaemon/package_deb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/package_deb.mk -------------------------------------------------------------------------------- /XReflectorDaemon/package_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/package_default.mk -------------------------------------------------------------------------------- /XReflectorDaemon/settings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/settings.mk -------------------------------------------------------------------------------- /XReflectorDaemon/settings_default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/settings_default.mk -------------------------------------------------------------------------------- /XReflectorDaemon/settings_rpi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/XReflectorDaemon/settings_rpi.mk -------------------------------------------------------------------------------- /ircDDBGateway.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway.nsi -------------------------------------------------------------------------------- /ircDDBGateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/.gitignore -------------------------------------------------------------------------------- /ircDDBGateway/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/BUILD.txt -------------------------------------------------------------------------------- /ircDDBGateway/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/CHANGES.txt -------------------------------------------------------------------------------- /ircDDBGateway/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/COPYING.txt -------------------------------------------------------------------------------- /ircDDBGateway/Common/AMBEData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/AMBEData.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/AMBEData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/AMBEData.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/APRSCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/APRSCollector.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/APRSWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/APRSWriter.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/APRSWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/APRSWriter.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/AudioUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/AudioUnit.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/AudioUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/AudioUnit.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/CCITTChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/CCITTChecksum.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/CCSCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/CCSCallback.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/CCSData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/CCSData.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/CCSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/CCSData.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/CCSHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/CCSHandler.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/CCSHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/CCSHandler.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/CacheManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/CacheManager.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/CacheManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/CacheManager.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/CallsignList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/CallsignList.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/Common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/Common.vcproj -------------------------------------------------------------------------------- /ircDDBGateway/Common/Common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/Common.vcxproj -------------------------------------------------------------------------------- /ircDDBGateway/Common/ConnectData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/ConnectData.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/DCSHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/DCSHandler.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/DCSHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/DCSHandler.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/DDData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/DDData.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/DDData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/DDData.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/DDHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/DDHandler.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/DDHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/DDHandler.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/DPlusHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/DPlusHandler.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/DRATSServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/DRATSServer.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/DStarDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/DStarDefines.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/DTMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/DTMF.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/DTMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/DTMF.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/Defs.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/EchoUnit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/EchoUnit.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/EchoUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/EchoUnit.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/G2Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/G2Handler.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/G2Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/G2Handler.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/GatewayCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/GatewayCache.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/HeaderData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/HeaderData.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/HeaderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/HeaderData.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/HeaderLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/HeaderLogger.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/HeardData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/HeardData.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/HeardData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/HeardData.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/HostFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/HostFile.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/HostFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/HostFile.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/LogEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/LogEvent.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/LogEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/LogEvent.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/Logger.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/Logger.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/PollData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/PollData.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/PollData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/PollData.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/RingBuffer.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/SHA256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/SHA256.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/SHA256.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/StatusData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/StatusData.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/StatusData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/StatusData.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/TextData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/TextData.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/TextData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/TextData.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/Timer.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/Timer.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/UserCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/UserCache.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/UserCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/UserCache.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/Utils.cpp -------------------------------------------------------------------------------- /ircDDBGateway/Common/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/Utils.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/Version.h -------------------------------------------------------------------------------- /ircDDBGateway/Common/VersionUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Common/VersionUnit.h -------------------------------------------------------------------------------- /ircDDBGateway/Data/CCS_Hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/CCS_Hosts.txt -------------------------------------------------------------------------------- /ircDDBGateway/Data/DCS_Hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/DCS_Hosts.txt -------------------------------------------------------------------------------- /ircDDBGateway/Data/DExtra_Hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/DExtra_Hosts.txt -------------------------------------------------------------------------------- /ircDDBGateway/Data/DPlus_Hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/DPlus_Hosts.txt -------------------------------------------------------------------------------- /ircDDBGateway/Data/TIME_de_DE.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/TIME_de_DE.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/TIME_de_DE.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/TIME_de_DE.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/TIME_en_GB.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/TIME_en_GB.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/TIME_en_GB.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/TIME_en_GB.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/TIME_en_US.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/TIME_en_US.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/TIME_en_US.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/TIME_en_US.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/TIME_fr_FR.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/TIME_fr_FR.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/TIME_fr_FR.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/TIME_fr_FR.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/TIME_se_SE.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/TIME_se_SE.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/TIME_se_SE.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/TIME_se_SE.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/de_DE.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/de_DE.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/de_DE.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/de_DE.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/dk_DK.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/dk_DK.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/dk_DK.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/dk_DK.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/en_GB.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/en_GB.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/en_GB.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/en_GB.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/en_US.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/en_US.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/en_US.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/en_US.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/es_ES.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/es_ES.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/es_ES.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/es_ES.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/fr_FR.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/fr_FR.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/fr_FR.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/fr_FR.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/it_IT.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/it_IT.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/it_IT.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/it_IT.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/no_NO.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/no_NO.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/no_NO.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/no_NO.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/pl_PL.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/pl_PL.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/pl_PL.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/pl_PL.indx -------------------------------------------------------------------------------- /ircDDBGateway/Data/se_SE.ambe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/se_SE.ambe -------------------------------------------------------------------------------- /ircDDBGateway/Data/se_SE.indx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Data/se_SE.indx -------------------------------------------------------------------------------- /ircDDBGateway/GUICommon/DCSSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/GUICommon/DCSSet.cpp -------------------------------------------------------------------------------- /ircDDBGateway/GUICommon/DCSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/GUICommon/DCSSet.h -------------------------------------------------------------------------------- /ircDDBGateway/GUICommon/DExtraSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/GUICommon/DExtraSet.h -------------------------------------------------------------------------------- /ircDDBGateway/GUICommon/DPRSSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/GUICommon/DPRSSet.cpp -------------------------------------------------------------------------------- /ircDDBGateway/GUICommon/DPRSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/GUICommon/DPRSSet.h -------------------------------------------------------------------------------- /ircDDBGateway/GUICommon/DPlusSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/GUICommon/DPlusSet.h -------------------------------------------------------------------------------- /ircDDBGateway/GUICommon/RemoteSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/GUICommon/RemoteSet.h -------------------------------------------------------------------------------- /ircDDBGateway/GUICommon/XLXSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/GUICommon/XLXSet.cpp -------------------------------------------------------------------------------- /ircDDBGateway/GUICommon/XLXSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/GUICommon/XLXSet.h -------------------------------------------------------------------------------- /ircDDBGateway/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Makefile.am -------------------------------------------------------------------------------- /ircDDBGateway/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/Makefile.in -------------------------------------------------------------------------------- /ircDDBGateway/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/aclocal.m4 -------------------------------------------------------------------------------- /ircDDBGateway/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ar-lib -------------------------------------------------------------------------------- /ircDDBGateway/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/compile -------------------------------------------------------------------------------- /ircDDBGateway/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/configure -------------------------------------------------------------------------------- /ircDDBGateway/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/configure.ac -------------------------------------------------------------------------------- /ircDDBGateway/debian/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/debian/README -------------------------------------------------------------------------------- /ircDDBGateway/debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/debian/README.Debian -------------------------------------------------------------------------------- /ircDDBGateway/debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/debian/README.source -------------------------------------------------------------------------------- /ircDDBGateway/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/debian/changelog -------------------------------------------------------------------------------- /ircDDBGateway/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /ircDDBGateway/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/debian/control -------------------------------------------------------------------------------- /ircDDBGateway/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/debian/copyright -------------------------------------------------------------------------------- /ircDDBGateway/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/debian/docs -------------------------------------------------------------------------------- /ircDDBGateway/debian/ircddbgatewayd.install: -------------------------------------------------------------------------------- 1 | usr/sbin/ircddbgatewayd 2 | -------------------------------------------------------------------------------- /ircDDBGateway/debian/remotecontrol.install: -------------------------------------------------------------------------------- 1 | usr/bin/remotecontrol 2 | -------------------------------------------------------------------------------- /ircDDBGateway/debian/remotecontrold.install: -------------------------------------------------------------------------------- 1 | usr/bin/remotecontrold 2 | -------------------------------------------------------------------------------- /ircDDBGateway/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/debian/rules -------------------------------------------------------------------------------- /ircDDBGateway/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /ircDDBGateway/debian/starnetserver.install: -------------------------------------------------------------------------------- 1 | usr/bin/starnetserver 2 | -------------------------------------------------------------------------------- /ircDDBGateway/debian/starnetserverd.install: -------------------------------------------------------------------------------- 1 | usr/sbin/starnetserverd 2 | -------------------------------------------------------------------------------- /ircDDBGateway/debian/timercontrol.install: -------------------------------------------------------------------------------- 1 | usr/bin/timercontrol 2 | -------------------------------------------------------------------------------- /ircDDBGateway/debian/timercontrold.install: -------------------------------------------------------------------------------- 1 | usr/sbin/timercontrold 2 | -------------------------------------------------------------------------------- /ircDDBGateway/debian/timeserver.install: -------------------------------------------------------------------------------- 1 | usr/bin/timeserver 2 | -------------------------------------------------------------------------------- /ircDDBGateway/debian/timeserverd.install: -------------------------------------------------------------------------------- 1 | usr/sbin/timeserverd 2 | -------------------------------------------------------------------------------- /ircDDBGateway/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/depcomp -------------------------------------------------------------------------------- /ircDDBGateway/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/install-sh -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCClient.cpp -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCClient.h -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCDDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCDDB.cpp -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCDDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCDDB.h -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCDDBApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCDDBApp.cpp -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCDDBApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCDDBApp.h -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCDDBClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCDDBClient.h -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCMessage.cpp -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCMessage.h -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCProtocol.h -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCReceiver.h -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCutils.cpp -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/IRCutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/IRCutils.h -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/LICENSE -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/ircDDB.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/ircDDB.vcproj -------------------------------------------------------------------------------- /ircDDBGateway/ircDDB/ircDDB.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDB/ircDDB.vcxproj -------------------------------------------------------------------------------- /ircDDBGateway/ircDDBGateway.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/ircDDBGateway.sln -------------------------------------------------------------------------------- /ircDDBGateway/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/missing -------------------------------------------------------------------------------- /ircDDBGateway/tests/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/tests/Tests.cpp -------------------------------------------------------------------------------- /ircDDBGateway/tests/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dl5di/OpenDV/HEAD/ircDDBGateway/tests/Tests.h --------------------------------------------------------------------------------