14 Commits

Author SHA1 Message Date
0cc8d047fc let's try this
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-08 17:35:12 +01:00
339ad92080 let's try this
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-08 17:31:43 +01:00
9d3b7ab8af finishing up
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-08 17:26:29 +01:00
1bbb37479a try to install the link checker in CI
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-08 16:39:42 +01:00
f53d46b654 link corrections
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-08 16:23:24 +01:00
f8f3d69402 more useful docs
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-08 16:13:03 +01:00
094c9502b2 improve images
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-08 15:43:08 +01:00
bb5bd30e4e update communication chapter
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-08 14:14:13 +01:00
1e82ebe9ee update book 2024-02-08 14:05:40 +01:00
ca80d02ddc Merge branch 'update-example-2' of egit.irs.uni-stuttgart.de:rust/sat-rs into update-example-2
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-08 13:53:47 +01:00
2c5c5a5f6b test fixes 2024-02-08 13:53:36 +01:00
a5425fb774 Merge branch 'main' into update-example-2
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-08 13:47:39 +01:00
8f64f4bc02 added some really useful diagrams
Some checks are pending
Rust/sat-rs/pipeline/head Build started...
2024-02-08 13:46:56 +01:00
4a94fd8ffe some better naming and API improvements
Some checks failed
Rust/sat-rs/pipeline/head There was a failure building this commit
2024-02-08 11:32:44 +01:00
2 changed files with 4 additions and 2 deletions

View File

@ -17,7 +17,7 @@ it is still centered around small packets. `sat-rs` provides support for these E
standards and also attempts to fill the gap to the internet protocol by providing the following standards and also attempts to fill the gap to the internet protocol by providing the following
components. components.
1. [UDP TMTC Server](https://docs.rs/satrs-core/0.1.0-alpha.0/satrs_core/hal/host/udp_server/index.html). 1. [UDP TMTC Server](https://docs.rs/satrs-core/hal/host/udp_server/index.html).
UDP is already packet based which makes it an excellent fit for exchanging space packets. UDP is already packet based which makes it an excellent fit for exchanging space packets.
2. [TCP TMTC Server Components](https://docs.rs/satrs-core/0.1.0-alpha.1/satrs_core/hal/std/tcp_server/index.html). 2. [TCP TMTC Server Components](https://docs.rs/satrs-core/0.1.0-alpha.1/satrs_core/hal/std/tcp_server/index.html).
TCP is a stream based protocol, so the framework provides building blocks to parse telemetry TCP is a stream based protocol, so the framework provides building blocks to parse telemetry

View File

@ -1,6 +1,6 @@
[package] [package]
name = "satrs-core" name = "satrs-core"
version = "0.1.0-alpha.2" version = "0.1.0-alpha.1"
edition = "2021" edition = "2021"
rust-version = "1.61" rust-version = "1.61"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"] authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
@ -15,6 +15,8 @@ categories = ["aerospace", "aerospace::space-protocols", "no-std", "hardware-sup
[dependencies] [dependencies]
delegate = ">0.7, <=0.10" delegate = ">0.7, <=0.10"
paste = "1" paste = "1"
# TODO: Remove this as soon as the image including the description was moved to the satrs-book.
embed-doc-image = "0.1"
[dependencies.smallvec] [dependencies.smallvec]
version = "1" version = "1"