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
import boto3, json, os, shutil, subprocess | |
from argparse import ArgumentParser | |
""" | |
Big Chalice Deployer deployes Chalice Apps using the "chalice package ..." command and | |
modifies the resulting sam.json template to make use of the Docker deployment process | |
instead of the default, s3 based, process. Additionally, the ability to delete the | |
resulting SAM App is available via the CLI. | |
Usage: |
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 |