website update: Add spacepackets
This commit is contained in:
parent
ed35258ddf
commit
b072b5440a
128
fsfw.html
Normal file
128
fsfw.html
Normal file
@ -0,0 +1,128 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>IRS Software Projects</title>
|
||||
<link rel="stylesheet" href="index.css"/>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="top-nav">
|
||||
<div class="navbar">
|
||||
<a href="https://www.irs.uni-stuttgart.de/" target="_blank"
|
||||
><img src="images/unilogo_schriftzug_white.png" clas="navbar-logo"
|
||||
/></a>
|
||||
|
||||
<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="sp-click"><a href="spacepackets.html">spacepackets</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div id="sat-rs-content">
|
||||
<div class="img-container">
|
||||
<img class="logo-fsfw" src="images/FSFW_Logo_V3_bw.png" />
|
||||
</div>
|
||||
<p class="fsfw-desc">
|
||||
The Flight Software Framework is a C++ Object Oriented Framework for
|
||||
unmanned, automated systems like Satellites. It has flight heritage
|
||||
through the 2 missions
|
||||
<a
|
||||
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/flying-laptop/"
|
||||
target="_blank"
|
||||
>FLP</a
|
||||
>
|
||||
and
|
||||
<a
|
||||
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/EIVE/"
|
||||
target="_blank"
|
||||
>EIVE</a
|
||||
>.
|
||||
</p>
|
||||
|
||||
<h1>Documentation and Coverage</h1>
|
||||
<div id="fsfw-links">
|
||||
<div class="left-box">
|
||||
<ul>
|
||||
<li>
|
||||
<a
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/development/"
|
||||
target="_blank"
|
||||
>DEVELOP</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/coverage/development/"
|
||||
target="_blank"
|
||||
>→ COVERAGE</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="right-box">
|
||||
<ul>
|
||||
<li>
|
||||
<a
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/master/"
|
||||
target="_blank"
|
||||
>MASTER</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/coverage/master/"
|
||||
target="_blank"
|
||||
>→ COVERAGE</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Repository</h1>
|
||||
<div class="single-box">
|
||||
<p>
|
||||
<a
|
||||
href="https://egit.irs.uni-stuttgart.de/fsfw/fsfw"
|
||||
target="_blank"
|
||||
class="repo"
|
||||
>REPOSITORY</a
|
||||
>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://www.irs.uni-stuttgart.de/" target="_blank"
|
||||
>IRS University of Stuttgart</a
|
||||
>
|
||||
</li>
|
||||
<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>
|
77
index.html
77
index.html
@ -1,3 +1,4 @@
|
||||
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
@ -21,82 +22,16 @@
|
||||
<div class="container">
|
||||
<div class="side-bar-container">
|
||||
<ul class="side-bar">
|
||||
<li id="fsfw-click"><a href="index.html">FSFW</a></li>
|
||||
<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="sp-click"><a href="spacepackets.html">spacepackets</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div id="sat-rs-content">
|
||||
<div class="img-container">
|
||||
<img class="logo-fsfw" src="images/FSFW_Logo_V3_bw.png" />
|
||||
</div>
|
||||
<p class="fsfw-desc">
|
||||
The Flight Software Framework is a C++ Object Oriented Framework for
|
||||
unmanned, automated systems like Satellites. It has flight heritage
|
||||
through the 2 missions
|
||||
<a
|
||||
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/flying-laptop/"
|
||||
target="_blank"
|
||||
>FLP</a
|
||||
>
|
||||
and
|
||||
<a
|
||||
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/EIVE/"
|
||||
target="_blank"
|
||||
>EIVE</a
|
||||
>.
|
||||
</p>
|
||||
|
||||
<h1>Documentation and Coverage</h1>
|
||||
<div id="fsfw-links">
|
||||
<div class="left-box">
|
||||
<ul>
|
||||
<li>
|
||||
<a
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/development/"
|
||||
target="_blank"
|
||||
>DEVELOP</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/coverage/development/"
|
||||
target="_blank"
|
||||
>→ COVERAGE</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="right-box">
|
||||
<ul>
|
||||
<li>
|
||||
<a
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/master/"
|
||||
target="_blank"
|
||||
>MASTER</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/coverage/master/"
|
||||
target="_blank"
|
||||
>→ COVERAGE</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Repository</h1>
|
||||
<div class="single-box">
|
||||
<p>
|
||||
<a
|
||||
href="https://egit.irs.uni-stuttgart.de/fsfw/fsfw"
|
||||
target="_blank"
|
||||
class="repo"
|
||||
>REPOSITORY</a
|
||||
>
|
||||
</p>
|
||||
</div>
|
||||
This is a collection of open-source software projects maintained by the satellite
|
||||
division of the Institute of Space Systems at the University of Stuttgart.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -18,8 +18,10 @@
|
||||
<div class="container">
|
||||
<div class="side-bar-container">
|
||||
<ul class="side-bar">
|
||||
<li id="fsfw-click"><a href="index.html">FSFW</a></li>
|
||||
<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="sp-click"><a href="spacepackets.html">spacepackets</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
96
spacepackets.html
Normal file
96
spacepackets.html
Normal file
@ -0,0 +1,96 @@
|
||||
<!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 contains generic implementations for various CCSDS (Consultative
|
||||
Committee for Space Data Systems) and ECSS (European Cooperation for Space
|
||||
Standardization) packet standards. Currently, generic packets 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>
|
||||
</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>
|
Reference in New Issue
Block a user