This repository has been 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
/
Copy pathfsfw.html
126 lines (123 loc) · 3.76 KB
/
fsfw.html
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
<!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="/projects/fsfw/development/"
target="_blank"
>DEVELOP</a
>
</li>
<li>
<a
href="/projects/fsfw/coverage/development/"
target="_blank"
>→ COVERAGE</a
>
</li>
</ul>
</div>
<div class="right-box">
<ul>
<li>
<a
href="/projects/fsfw/master/"
target="_blank"
>MASTER</a
>
</li>
<li>
<a
href="/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>