TODO:
The ground station automation project is meant to control the ground station operations with the satellite autonomously. This includes sending signals at the right time, and potentially coordinating with rotator box operations to ensure that signals are sent and received properly. The automation code is meant to work with the Operations Flow Graph.
The current code is split across a few main files: automate.py, schedule.py, propagate.py, tx_wrapper.py, rx_wrapper.py. This code can be accessed using the automation-dev branch of the ground-station repo [GitHub link found here].
This is the main function, that works as a series of states that require a given fulfilled criterion to progress to the next step. The flow of code is determined by the Functional Flow Block Diagram for the satellite. The trigger for continuing to the next step is an "ACK" signal received on the RX side HackRF. The code runs on a while loop so it is continuously checking to see when the current time is within a valid pass window. This file also contains the config inputs for modifying details such as
The propagate file uses the SatNOGS API to generate feasible pass windows for the satellite, coordinating them with rotator box control timings. it makes a request to the satnogs database, and then interprets the data from this message to get the pass window start and end times. In automate.py, whenever the current time falls into one of the windows, it sends a signal, and then waits for a response. Currently, the satellite ID being used is just a random one, as our satellite is not yet fully registered. This ID will need to be changed once the satellite is in orbiting.
This file contains some helper functions for organizing the finite state machine, collecting the current time in a usable format, and converting input times to epoch times (most commonly used in Two-Line Elements [more information here]).
tx_wrapper.py
The tx_wrapper.py file works similarly to the tx_for_bidirectional.py code found in ground-station, except it does not use the command line interface, and simply sends the signal right through to the flowgraph. It also logs this output to a text file with a timestamp, and a new file is set up on the first day of each month.
rx_wrapper.py
The rx_wrapper.py file requires significant work to improve, as it is currently unclear based n HackRF progress what an incoming signal from the satellite would look like. It needs to search the input signal for an "ACK", and then log the data that the satellite sends with a timestamp. Until the format of this data is known, this progress is somewhat blocked.
This project is somewhat blocked by the progress of the HackRF testing project, though there are some general items that can be done to verify the functionality of the overall code.