and that was all
This commit is contained in:
parent
5c2f9b136a
commit
668e90ab6c
@ -12,22 +12,26 @@ draft = false
|
||||
|
||||
<h2><i class="bi bi-file-text"></i> Documentation</h2>
|
||||
<div class="row row-cols-2 w-50 mx-auto my-4 gx-3">
|
||||
<div class="col text-end">
|
||||
<div class="col">
|
||||
<a
|
||||
type="button"
|
||||
class="content-button"
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/development/"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
target="_blank"
|
||||
>
|
||||
DEVELOP
|
||||
<span class="content-button-bg">
|
||||
<span class="content-button-text">DEVELOP</span>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col text-start">
|
||||
<div class="col">
|
||||
<a
|
||||
type="button"
|
||||
class="content-button"
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/master/"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
target="_blank"
|
||||
>
|
||||
MASTER
|
||||
<span class="content-button-bg">
|
||||
<span class="content-button-text">MASTER</span>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@ -36,11 +40,14 @@ draft = false
|
||||
<div class="row w-25 mx-auto pb-3 my-3">
|
||||
<div class="col">
|
||||
<a
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/coverage/development/"
|
||||
class="content-button"
|
||||
href="https://egit.irs.uni-stuttgart.de/fsfw/fsfw"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
target="_blank"
|
||||
>gitea</a
|
||||
>
|
||||
<span class="content-button-bg">
|
||||
<span class="content-button-text">GITEA</span>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -49,18 +56,24 @@ draft = false
|
||||
<div class="col text-end">
|
||||
<a
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/coverage/development/"
|
||||
class="content-button"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
target="_blank"
|
||||
>DEVELOP</a
|
||||
>
|
||||
<span class="content-button-bg">
|
||||
<span class="content-button-text">DEVELOP</span>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col text-start">
|
||||
<a
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/coverage/master/"
|
||||
class="content-button"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
target="_blank"
|
||||
>MASTER</a
|
||||
>
|
||||
<span class="content-button-bg">
|
||||
<span class="content-button-text">MASTER</span>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -64,9 +64,7 @@ draft = false
|
||||
|
||||
<h2><i class="bi bi-lightbulb"></i> Examples</h2>
|
||||
<div class="row w-25 mx-auto pb-3 my-3">
|
||||
|
||||
<div class="col">
|
||||
|
||||
<a
|
||||
href="https://egit.irs.uni-stuttgart.de/rust/sat-rs/src/branch/main/satrs-example"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
|
4
content/projects/spacepackets/description.md
Normal file
4
content/projects/spacepackets/description.md
Normal file
@ -0,0 +1,4 @@
|
||||
These packages contains generic implementations for various CCSDS
|
||||
(Consultative Committee for Space Data Systems) and ECSS (European
|
||||
Cooperation for Space Standardization) packet standards. Currently, these
|
||||
packages are provided for Python and for Rust.
|
@ -6,11 +6,97 @@ draft = false
|
||||
|
||||
<div class="container text-center">
|
||||
<div class="d-flex justify-content-center mx-auto w-75">
|
||||
<p class="text-justify">
|
||||
These packages contains generic implementations for various CCSDS
|
||||
(Consultative Committee for Space Data Systems) and ECSS (European
|
||||
Cooperation for Space Standardization) packet standards. Currently, these
|
||||
packages are provided for Python and for Rust.
|
||||
</p>
|
||||
<p class="text-justify">{{% content "description.md" %}}</p>
|
||||
</div>
|
||||
|
||||
<h1>Python</h1>
|
||||
<div class="row row-cols-2 w-50 mx-auto my-4 gx-3">
|
||||
<div class="col text-end">
|
||||
<a
|
||||
href="https://github.com/us-irs/spacepackets-py"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
target="_blank"
|
||||
>
|
||||
<span class="content-button-bg">
|
||||
<span class="content-button-text"
|
||||
><i class="bi bi-git"></i> Repository</span
|
||||
>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col text-start">
|
||||
<a
|
||||
href="https://spacepackets.readthedocs.io/en/latest/"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
target="_blank"
|
||||
>
|
||||
<span class="content-button-bg">
|
||||
<span class="content-button-text"
|
||||
><i class="bi bi-file-text"></i> Documentation</span
|
||||
>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h1>Rust</h1>
|
||||
<h2><i class="bi bi-git"></i> Repository</h2>
|
||||
<div class="row row-cols-2 w-50 mx-auto my-4 gx-3">
|
||||
<div class="col text-end">
|
||||
<a
|
||||
href="https://egit.irs.uni-stuttgart.de/rust/spacepackets"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
target="_blank"
|
||||
>
|
||||
<span class="content-button-bg">
|
||||
<span class="content-button-text"
|
||||
><i class="bi bi-git"></i> Gitea</span
|
||||
>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col text-start">
|
||||
<a
|
||||
href="https://github.com/us-irs/spacepackets-rs"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
target="_blank"
|
||||
>
|
||||
<span class="content-button-bg">
|
||||
<span class="content-button-text"
|
||||
><i class="bi bi-file-text"></i> Github (Mirror)</span
|
||||
>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2><i class="bi bi-file-text"></i> Documentation</h2>
|
||||
<div class="row w-25 mx-auto pb-3 my-3">
|
||||
<div class="col">
|
||||
<a
|
||||
href="https://docs.rs/spacepackets"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
target="_blank"
|
||||
>
|
||||
<span class="content-button-bg">
|
||||
<span class="content-button-text">docs.rs</span>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2><i class="bi bi-check"></i> Coverage</h2>
|
||||
<div class="row w-25 mx-auto pb-3 my-3">
|
||||
<div class="col">
|
||||
<a
|
||||
href="projects/spacepackets-rs/coverage/latest"
|
||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||
target="_blank"
|
||||
>
|
||||
<span class="content-button-bg">
|
||||
<span class="content-button-text">Latest</span>
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user