Windows SDR Software Package (Change log)This package contains:
If you are looking for the last unskinned SDR# build, check here. |
Community Package with PluginsThis package is managed by Rodrigo Pérez and contains:
|
SPY Server – SDR Server for 32-bit ARM boardsAirspy R0, R2, Mini, Airspy HF+ and RTL-SDR can be used as a high performance SDR receiver capable of streaming separate chunks of the spectrum to multiple clients over the LAN or the Internet. |
SPY Server – SDR Server for 64-bit ARM boardsThis build can be used with AARCH64 ARM boards like Raspberry Pi 4 or Odroid. |
SPY Server – SDR Server for Linux x64This build can be used with 64-bit Intel/AMD CPU’s. |
SPY Server – SDR Server for Linux x86This build can be used with 32-bit Intel/AMD CPUs. |
SPY Server – SDR Server for Windows 32-bit and 64-bitThis build can be used on Windows with 32-bit or 64-bit Intel/AMD CPUs. |
ADS-B SPY – ADSB decoder for 32bit ARM LinuxAirspy R0, R2 and Mini can be used as a high performance ADSB receiver capable of 20MHz, low scatter MLAT. The performance is comparable to top end, way more expensive ADSB receivers. This executable turns your Airspy into an autonomous ADSB station with low power requirements. |
ADS-B SPY – ADSB decoder for 64-bit ARM LinuxThis build can be used with AARCH64 ARM SBCs like the Raspberry Pi 4, Odroid or compatible. |
ADS-B SPY – ADSB decoder for Linux x86This build can be used with 32bit Intel/AMD CPU’s. |
ADS-B SPY – ADSB decoder for Linux x64This build can be used with 64bit Intel/AMD CPU’s. |
ExtIO for Airspy R0, R2 and MiniThis build is provided by Andrea Montefusco and works with HDSDR, Studio1 and compatible software. |
ExtIO for Airspy HF+ and DiscoveryThis build is provided by Andrea Montefusco and works with HDSDR, Studio1 and compatible software. |
WinUSB Compatibility DriverIf Windows fails to recognize your Airspy device automatically, unzip and install this driver. |
Find a mod you want to play, then download the Assembly-CSharp.dll that is there. Drag the file you just downloaded into the Managed folder. If it asks to replace, click yes. If you've downloaded an Assembly-CSharp.dll before, delete the one in the folder before putting the new one in then renaming the one you just put in to Assembly-CSharp.
Developer Resources
Cool SDR stuff from our friends
Repl.it is the world-leading online coding platform where you can collaborate, compile, run, share, and deploy C# online. Code in 50+ programming languages and frameworks! This course will give you a full introduction into all of the core concepts in C# (aka C Sharp). Follow along with the course and you'll be a C# programmer i.
C Sharp Download Mac Download
- GNU Radio Live DVD (AirSpy support based on Ubuntu Linux 14.04.4 LTS, 64-bit edition)
- GNU Radio Win64 binaries with airspy support see also build scripts on github
- SDR-J DAB, WFM and SDR programs with airspy support
- URH Universal Radio Hacker (The Ultimate Radio Hacker Tool with native AirSpy support since 21 April 2017)
This document will guide you through the process of setting up the C# development environment in macOS, creating contract projects with sample code, and compiling the smart contract.
Downloading Visual Studio for Mac
Download Visual Studio for Mac and follow the on-screen instructions to install the software.
Just check the basic functions when installing, without selecting the platform specific components like Android / iOS / macOS.
Creating a new project
Open Visual Studio for Mac, create a new project, and select .NET Standard Library.
Select .NET Standard 2.0 for the .NET Core version and follow the instructions to create the project with the name “test”.
Right click on
Dependencies
and chooseManage NuGet Package
.Search for
neo.smart
and chooseNeo.SmartContract.Framework
, then clickAdd Packge
.Write the following sample code in your Class1.cs file.
In the menu choose
Build
->Build All
to compile the corresponding code.A test.dll file is created in the folder
bin/Debug/netstandard2.0/
. Next we will use neon to compile it into a .avm smart contract file that can be deployed on the blockchain.
Downloading contract compiler
Download neo-devpack-dotnet from GitHub.
The master branch has been upgraded to Neo3 compiler, so you must switch the Git branch to
master-2.x
before downloading.Run Visual Studio for Mac and open the solution neo-devpack-dotnet.sln. Right-click Neo.Compiler.MSIL and then select
Publish
.Publish neon to the default path。After published, you can find neon.dll is generated under the path.
Compiling your smart contract to .avm
Download and install .NET Core .
Copy the new project file test.dll generated in previous steps into the directory where neon.dll locates in.
Run Terminal, and use
cd
to go to the directory where neon.dll locates in. Enterdotnet neon.dll test.dll
to compile the .dll file into .avm.The output should look like this
C Sharp Download Machine
You should now find the .avm
file in the test output folder.