Skip to content

Instantly share code, notes, and snippets.

View awelkie's full-sized avatar

Allen Welkie awelkie

  • snips.ai
  • Paris, France
View GitHub Profile
@awelkie
awelkie / tx.py
Created March 23, 2018 16:00
Demonstrating an issue with SoapySDR and HackRF
#!/usr/bin/env python
import numpy
import SoapySDR
CENTER_FREQ_HZ = 1262e6
BANDWIDTH_HZ = 2_000_000
def transmit_signal(sdr, signal):
tx_stream = sdr.setupStream(SoapySDR.SOAPY_SDR_TX, "CF32", [0])
@awelkie
awelkie / Cargo.toml
Created December 20, 2015 16:30
PhantomRef
[package]
name = "usb_example"
version = "0.1.0"
authors = ["Allen Welkie <allen.welkie@gmail.com>"]
[dependencies]
libusb = "*"