├── .gitignore ├── LICENSE ├── README.md ├── captures └── .gitkeep ├── ft8_qso.conf ├── ft8_rx.py ├── ft8_tx.py ├── ft8decode ├── ft8encode ├── run_cq.py └── run_response.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/automate_ft8/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/automate_ft8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/automate_ft8/HEAD/README.md -------------------------------------------------------------------------------- /captures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ft8_qso.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/automate_ft8/HEAD/ft8_qso.conf -------------------------------------------------------------------------------- /ft8_rx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/automate_ft8/HEAD/ft8_rx.py -------------------------------------------------------------------------------- /ft8_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/automate_ft8/HEAD/ft8_tx.py -------------------------------------------------------------------------------- /ft8decode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/automate_ft8/HEAD/ft8decode -------------------------------------------------------------------------------- /ft8encode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/automate_ft8/HEAD/ft8encode -------------------------------------------------------------------------------- /run_cq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/automate_ft8/HEAD/run_cq.py -------------------------------------------------------------------------------- /run_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckoval7/automate_ft8/HEAD/run_response.py --------------------------------------------------------------------------------