Skip to content

Instantly share code, notes, and snippets.

View akshmakov's full-sized avatar

Andrey Shmakov akshmakov

View GitHub Profile
@kbeckmann
kbeckmann / ConvertRawToSDRAngel.py
Created May 19, 2019 19:28
Convert RAW iq samples to SDRAngel "sdriq" format
import sys
import struct
import binascii
# See https://github.com/f4exb/sdrangel/tree/master/plugins/samplesource/filesource
data = open(sys.argv[1], "rb").read()
out = open(sys.argv[2], "wb")
w = bytearray()