update docs

This commit is contained in:
Robin Müller 2024-02-07 17:58:51 +01:00
parent a55ba016d8
commit b46f4ac875
Signed by: muellerr
GPG Key ID: A649FB78196E3849
3 changed files with 41 additions and 24 deletions

View File

@ -2,9 +2,16 @@
- [Introduction](./introduction.md) - [Introduction](./introduction.md)
- [Design](./design.md) - [Design](./design.md)
# Basic concepts and components
- [Communication with Space Systems](./communication.md) - [Communication with Space Systems](./communication.md)
- [Working with Constrained Systems](./constrained-systems.md) - [Working with Constrained Systems](./constrained-systems.md)
- [Actions](./actions.md) - [Actions](./actions.md)
- [Modes and Health](./modes-and-health.md) - [Modes and Health](./modes-and-health.md)
- [Housekeeping Data](./housekeeping.md) - [Housekeeping Data](./housekeeping.md)
- [Events](./events.md) - [Events](./events.md)
# Example project
- [The satrs-example application](./example.md)

30
satrs-book/src/example.md Normal file
View File

@ -0,0 +1,30 @@
# sat-rs Example Application
The `sat-rs` framework includes a monolithic example application which can be found inside
the [`satrs-example`](https://egit.irs.uni-stuttgart.de/rust/sat-rs/src/branch/main/satrs-example)
subdirectory of the repository. The primary purpose of this example application is to show how
the various components of the sat-rs framework could be used as part of a larger on-board
software application.
## Structure of the example project
The example project contains components which could also be expected to be part of a production
On-Board Software.
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.
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.
- Service 11 for scheduling telecommands to be released at a specific time.
- 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.

View File

@ -46,31 +46,11 @@ as Python code. For example, you can use the following command to send a ping li
the `simpleclient`: the `simpleclient`:
```sh ```sh
./main.py -s test -o ping ./main.py -p /test/ping
``` ```
You can also simply call the script without any arguments to view a list of services (`-s` flag) You can also simply call the script without any arguments to view the command tree.
and corresponding op codes (`-o` flag) for each service.
# Structure of the example project # High-level information about the example project
The example project contains components which could also be expected to be part of a production You can read more high-level information inside the [dedicated chapter]() of the sat-rs book.
On-Board Software.
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.
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.
- Service 11 for scheduling telecommands to be released at a specific time.
- 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.