2022-11-20 19:29:50 +01:00
|
|
|
sat-rs example
|
|
|
|
======
|
2022-11-20 20:12:35 +01:00
|
|
|
|
2022-11-20 20:42:29 +01:00
|
|
|
This crate contains an example application which simulates an on-board software.
|
|
|
|
It uses various components provided by the sat-rs framework to do this. As such, it shows how
|
|
|
|
a more complex real on-board software could be built from these components.
|
|
|
|
The application opens a UDP server on port 7301 to receive telecommands.
|
2022-11-20 20:12:35 +01:00
|
|
|
|
2022-11-20 20:42:29 +01:00
|
|
|
You can run the application using `cargo run`. The `simpleclient` binary target sends a
|
|
|
|
ping telecommand and then verifies the telemetry generated by the example application.
|
|
|
|
It can be run like this:
|
|
|
|
|
|
|
|
```rs
|
|
|
|
cargo run --bin simpleclient
|
|
|
|
```
|
|
|
|
|
|
|
|
This repository also contains a more complex client using the
|
|
|
|
[Python tmtccmd](https://github.com/robamu-org/tmtccmd) module.
|
|
|
|
|
2023-09-27 14:28:42 +02:00
|
|
|
# <a id="tmtccmd"></a> Using the tmtccmd Python client
|
2022-11-20 20:42:29 +01:00
|
|
|
|
|
|
|
The python client requires a valid installation of the
|
|
|
|
[tmtccmd package](https://github.com/robamu-org/tmtccmd).
|
|
|
|
|
|
|
|
It is recommended to use a virtual environment to do this. To set up one in the command line,
|
|
|
|
you can use `python3 -m venv venv` on Unix systems or `py -m venv venv` on Windows systems.
|
|
|
|
After doing this, you can check the [venv tutorial](https://docs.python.org/3/tutorial/venv.html)
|
|
|
|
on how to activate the environment and then use the following command to install the required
|
|
|
|
dependency:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
pip install -r requirements.txt
|
|
|
|
```
|
|
|
|
|
|
|
|
Alternatively, if you would like to use the GUI functionality provided by `tmtccmd`, you can also
|
|
|
|
install it manually with
|
|
|
|
|
|
|
|
```sh
|
|
|
|
pip install tmtccmd[gui]
|
|
|
|
```
|
|
|
|
|
|
|
|
After setting up the dependencies, you can simply run the `main.py` script to send commands
|
|
|
|
to the OBSW example and to view and handle incoming telemetry. The script and the `tmtccmd`
|
|
|
|
framework it uses allow to easily add and expose additional telecommand and telemetry handling
|
2022-11-20 20:48:34 +01:00
|
|
|
as Python code. For example, you can use the following command to send a ping like done with
|
|
|
|
the `simpleclient`:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
./main.py -s test -o ping
|
|
|
|
```
|
|
|
|
|
|
|
|
You can also simply call the script without any arguments to view a list of services (`-s` flag)
|
|
|
|
and corresponding op codes (`-o` flag) for each service.
|
2023-09-27 14:28:42 +02:00
|
|
|
|
|
|
|
# Structure of the example project
|
|
|
|
|
|
|
|
The example project contains components which could also be expected to be part of a production
|
|
|
|
On-Board Software.
|
|
|
|
|
2023-09-29 14:13:22 +02:00
|
|
|
1. A UDP and TCP server to receive telecommands and poll telemetry from. This might be an optional
|
|
|
|
component for an OBSW which is only used during the development phase on ground. The TCP
|
|
|
|
server parses space packets by using the CCSDS space packet ID as the packet start delimiter.
|
2023-09-27 14:28:42 +02:00
|
|
|
2. A PUS service stack which exposes some functionality conformant with the ECSS PUS service. This
|
|
|
|
currently includes the following services:
|
|
|
|
- Service 1 for telecommand verification.
|
|
|
|
- Service 3 for housekeeping telemetry handling.
|
|
|
|
- Service 5 for management and downlink of on-board events.
|
|
|
|
- Service 8 for handling on-board actions.
|
2023-09-27 14:33:24 +02:00
|
|
|
- Service 11 for scheduling telecommands to be released at a specific time.
|
2023-09-27 14:28:42 +02:00
|
|
|
- Service 17 for test purposes (pings)
|
|
|
|
3. An event manager component which handles the event IPC mechanism.
|
|
|
|
4. A TC source component which demultiplexes and routes telecommands based on parameters like
|
|
|
|
packet APID or PUS service and subservice type.
|
|
|
|
5. A TM sink sink component which is the target of all sent telemetry and sends it to downlink
|
|
|
|
handlers like the UDP and TCP server.
|
|
|
|
6. An AOCS example task which can also process some PUS commands.
|