Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 523 Bytes

developer-guide.md

File metadata and controls

25 lines (15 loc) · 523 Bytes

Developers' Guide

Software Architecture

Production in Windows OS

To create EXE for production in Windows, type the following command into Windows Powershell:

pyinstaller Ground_Station.spec

The backup command is:

pyinstaller --onefile -w -i "assets/satellite.ico" Ground_Station.py

Downlink Notes

This note is for downlink mission implementation.

Useful Guides

How to run a long running process alongside Tkinter GUI: here