#hardware-abstraction-layer #abstraction-layer #radio #sdr #api-bindings

bin+lib soapysdr

Library wrapping SoapySDR, a hardware abstraction layer for many software defined radio devices, including rtl-sdr, HackRF, USRP, LimeSDR, BladeRF, and Airspy

7 unstable releases

0.4.0 Oct 21, 2023
0.3.3 Jul 8, 2023
0.3.2 Feb 23, 2022
0.3.1 Oct 17, 2021
0.1.0 Nov 13, 2018

#1 in #sdr

Download history 45/week @ 2023-11-24 51/week @ 2023-12-01 36/week @ 2023-12-08 38/week @ 2023-12-15 40/week @ 2023-12-22 42/week @ 2023-12-29 63/week @ 2024-01-05 60/week @ 2024-01-12 36/week @ 2024-01-19 97/week @ 2024-01-26 97/week @ 2024-02-02 111/week @ 2024-02-09 101/week @ 2024-02-16 132/week @ 2024-02-23 129/week @ 2024-03-01 42/week @ 2024-03-08

413 downloads per month
Used in 3 crates (2 directly)

BSL-1.0 OR Apache-2.0

80KB
1.5K SLoC

Rust bindings for SoapySDR

SoapySDR provides a hardware abstraction layer for many software defined radio devices.

API Documentation | Changelog

Dependencies

This library requires dependencies not handled by Cargo:

  • libsoapysdr 0.6, 0.7, or 0.8
  • libclang 5.0+ (for bindgen)
  • pkg-config

Ubuntu

(Tested on Ubuntu 22.04)

sudo apt install libsoapysdr-dev libclang-dev llvm-dev pkg-config

# Choose the appropriate drivers for your hardware:
sudo apt install soapysdr-module-rtlsdr soapysdr-module-hackrf soapysdr-module-uhd soapysdr-module-lms7

Nix

nix-shell

(see shell.nix)

Windows

Install pre-built PothosSDR and LLVM, then

  • Set LIBCLANG_PATH environment variable to LLVM bin directory for rust-bindgen
  • Add PothosSDR bin directory to system PATH

Warning

Many SoapySDR driver modules have error handling and thread safety bugs. This library provides safe Rust wrappers assuming the drivers meet the (under-documented) intentions of the SoapySDR core API contract, but if SoapySDR loads modules that violate this contract and you do atypical things with them, you may encounter unexpected behavior. For details, see this SoapySDR issue.

Utilities

This crate comes with two small utilities that serve as example code.

soapy-sdr-info

Displays device details like SoapySDRUtil.

cargo run --release --features=binaries --bin soapy-sdr-info

soapy-sdr-stream

Records data from a device.

e.g. capture 15 seconds of data from the FM band:

cargo run --release --features=binaries --bin soapy-sdr-stream -- -d driver=rtlsdr -r out.cfile -f 96M -s 1M -n 15M

The resulting file contains 32-bit little-endian complex float samples, and can be opened with inspectrum.

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.4–3.5MB
~55K SLoC