another small update
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good

This commit is contained in:
Robin Müller 2024-02-07 18:09:15 +01:00
parent f0073432ff
commit af49c80341
Signed by: muellerr
GPG Key ID: A649FB78196E3849

View File

@ -10,16 +10,7 @@ the sat-rs book.
The application opens a UDP and a TCP server on port 7301 to receive telecommands. The application opens a UDP and a TCP server on port 7301 to receive telecommands.
You can run the application using `cargo run`. The `simpleclient` binary target sends a You can run the application using `cargo run`.
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.
# Features # Features
@ -33,7 +24,22 @@ You can run the application without this feature using
cargo run --no-default-features cargo run --no-default-features
``` ```
# <a id="tmtccmd"></a> Using the tmtccmd Python client # Interacting with the sat-rs example
## Simple Client
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.
## <a id="tmtccmd"></a> Using the tmtccmd Python client
The python client requires a valid installation of the The python client requires a valid installation of the
[tmtccmd package](https://github.com/robamu-org/tmtccmd). [tmtccmd package](https://github.com/robamu-org/tmtccmd).
@ -66,7 +72,3 @@ the `simpleclient`:
``` ```
You can also simply call the script without any arguments to view the command tree. You can also simply call the script without any arguments to view the command tree.
# High-level information about the example project
You can read more high-level information inside the [dedicated chapter]() of the sat-rs book.