This repository was archived by the owner on Dec 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathspacepackets.html
More file actions
136 lines (133 loc) · 3.85 KB
/
spacepackets.html
File metadata and controls
136 lines (133 loc) · 3.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>
<html>
<head>
<title>IRS Software Projects</title>
<link
rel="stylesheet"
media="screen and (max-width: 699px)"
href="phone.css"
/>
<link
rel="stylesheet"
media="screen and (min-width: 700px)"
href="index.css"
/>
</head>
<body>
<nav class="top-nav">
<div class="navbar">
<img src="images/unilogo_schriftzug_white.png" class="navbar-logo" />
<p>Software Projects</p>
<a href="#" class="contact">Contact</a>
</div>
</nav>
<div class="container">
<div class="side-bar-container">
<ul class="side-bar">
<li id="home-click"><a href="index.html">Home</a></li>
<li id="fsfw-click"><a href="fsfw.html">FSFW</a></li>
<li id="sat-click"><a href="sat-rs.html">sat-rs</a></li>
<li id="sat-click"><a href="spacepackets.html">spacepackets</a></li>
</ul>
</div>
<div class="content">
<div id="sat-rs-content">
<p class="sat-rs-desc">
These packages contain 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>
<h1>Python</h1>
<div id="sat-rs-links">
<div class="left-box">
<ul>
<li>
<a
href="https://github.com/us-irs/spacepackets-py"
target="_blank"
>Repository</a
>
</li>
</ul>
</div>
<div class="right-box">
<ul>
<li>
<a
href="https://spacepackets.readthedocs.io/en/latest/"
target="_blank"
>Documentation</a
>
</li>
</ul>
</div>
</div>
<h1>Rust</h1>
<h2>Repository</h2>
<div id="sat-rs-links">
<div class="left-box">
<ul>
<li>
<a
href="https://egit.irs.uni-stuttgart.de/rust/spacepackets"
target="_blank"
>EGit</a
>
</li>
</ul>
</div>
<div class="right-box">
<ul>
<li>
<a
href="https://github.com/us-irs/spacepackets-rs"
target="_blank"
>Github (Mirror)</a
>
</li>
</ul>
</div>
</div>
<h2>Documentation</h2>
<div id="sat-rs-links">
<div class="single-box">
<p>
<a href="https://docs.rs/spacepackets" target="_blank"
>docs.rs</a
>
</p>
</div>
</div>
<h2>Coverage</h2>
<div id="sat-rs-links">
<div class="single-box">
<p>
<a href="/projects/spacepackets-rs/coverage/latest" target="_blank"
>Latest</a
>
</p>
</div>
</div>
</div>
</div>
</div>
<footer class="footer">
<ul>
<li>
<a href="https://www.uni-stuttgart.de/impressum" target="_blank"
>imprint</a
>
</li>
<li>
<a
href="https://info.irs.uni-stuttgart.de/datenschutz/datenschutzWebmit.html"
target="_blank"
>protection of privacy</a
>
</li>
<li>© 2023 Website by Nadine Eunous</li>
</ul>
</footer>
</body>
</html>