Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahopper/patroclus
Software defined radio emulator
https://github.com/ahopper/patroclus
Last synced: 24 days ago
JSON representation
Software defined radio emulator
- Host: GitHub
- URL: https://github.com/ahopper/patroclus
- Owner: ahopper
- License: mit
- Created: 2014-11-04T14:18:11.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2022-01-31T19:32:30.000Z (almost 3 years ago)
- Last Synced: 2023-02-26T19:11:44.168Z (almost 2 years ago)
- Language: C#
- Size: 458 KB
- Stars: 13
- Watchers: 6
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Patroclus - Software Defined Radio Emulator
===========================================## Introduction
This software emulates a HPSDR Hermes transceiver.
It adds together a user selectable number of sine wave signals and recorded .wav IQ files for each enabled receiver.
It will generate signals for as many receivers as the client requests.
Currently only the command and control messages needed for signal generation are emulated.It was written as an exercise to gain understanding of Hermes and sdr in general.
If time and motivation allow it might be extended to emulate other radios and protocols.It has been tested with the following sdr clients
* [CuSDR64 0.3.2.14](https://plus.google.com/107168125384405552048/posts) - Works well, although CuSDR does send out wrong tx frequency commands.
* [KISS Konsole 1.1.28](http://openhpsdr.org/wiki/index.php?title=KISS_Konsole) - This does not allow connections to a receiver on the same ip address as itself so you either have to run the emulator somewhere else on the network or remove the check from the source of KISS (in EthernetDevice.cs)
* [PowerSDR mRX PS 3.2.19](http://openhpsdr.org/wiki/index.php?title=PowerSDR) - No problems.
* [SDR#](http://sdrsharp.com/) using [ExtIO_hpsdr_msvc.dll](https://github.com/amontefusco/extio-hermes) - The extio dll rejects connections from the same ip address as itself so again the emulator has to run elsewhere on the network.
* [HDSDR](http://www.hdsdr.de/) using [ExtIO_hpsdr_msvc.dll](https://github.com/amontefusco/extio-hermes) - Same as SDR#
* Thetis V2.1.18 will run on same pc.
* [SparkSDR](http://www.ihopper.org/radio/) my client for [Hermes Lite](https://github.com/softerhardware/Hermes-Lite) - emulator will provide up to 32 receivers for hermes lite extended old protocol.
## Build
The original Patroclus project is depreciated but can be built with Visual Studio 2013 or later.
It uses .net4.5Patroclus.Avalonia is where any further development will be, it has the advantage of running on windows, linux and macos. To build install the .net6.0 sdk then from the Patroclus.Avalonia directory run the following:-
dotnet restore
dotnet run
![Patroclus](docs/patroclus.JPG)