Last active
February 5, 2020 03:42
-
-
Save RogerWebb/3f61013482de3b241370876a3020dd88 to your computer and use it in GitHub Desktop.
Sample recording from an RTL-SDR on a Raspberry Pi 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install rtl-sdr CLI utility, record from the RTL-SDR centered on 100.3MHZ and convert output to WAV for use in HDSDR, SDR# | |
# or comparable program/utility. | |
sudo apt-get install rtl-sdr | |
rtl_sdr -f 103.3e6 -s 2.4e6 -n 72000000 .\test_iq.raw | |
# For multiple SDRs or, for some reason, if yours comes up as Device Number 1 like mine add the -d {Device Num{ | |
# rtl_sdr -d 1 -f 103.3e6 -s 2.4e6 -n 72000000 .\test_iq.raw | |
sox -r 2.4e6 -e unsigned -b 8 -c 2 .\test_iq.raw .\test_hdsdr.wav |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment