-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproj_4_sd.html
201 lines (158 loc) · 4.63 KB
/
proj_4_sd.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<title>In Orbit Reprogramming for CubeSats</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900" rel="stylesheet">
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/style.css">
<style>
/*======================================
//--//--> ABOUT
======================================*/
.about-mf .box-shadow-full {
padding-top: 4rem;
padding-bottom: 4rem;
}
.about-mf .about-img {
margin-bottom: 2rem;
}
.about-mf .about-img img {
margin-left: 10px;
}
.skill-mf .progress {
/* background-color: #cde1f8; */
margin: .5rem 0 1.2rem 0;
border-radius: 0;
height: .7rem;
}
.skill-mf .progress .progress-bar {
height: .7rem;
background-color: #ffbd39;
}
/* Animation styles */
#typing-animation {
position: relative;
font-size: 30px;
font-weight: bold;
color: rgb(255, 255, 255);
overflow: hidden;
white-space: nowrap;
animation: typing 3s steps(20, end) infinite;
}
#typing-animation:before {
content: "";
/* position: absolute; */
top: 0;
left: 0;
width: 0;
height: 100%;
background-color: #ccc;
animation: typing-cursor 0.5s ease-in-out infinite;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
@keyframes typing-cursor {
from {
width: 5px;
}
to {
width: 0;
}
}
/* project image zoom effect */
.zoom-effect {
overflow: hidden;
transition: transform 0.3s ease-out;
}
.zoom-effect:hover {
transform: scale(1.1);
}
.img_deg_R
{
float: right;
width: 25%;
}
.img_deg_L
{
float: left;
width: 20%;
}
.box
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.dream
{
display: flex;
flex-direction: column;
width: 32.5%;
}
.dream img{
width: 100%;
}
@media only screen and (max-width: 769px){
.box{
flex-direction: column;
}
.dream{
width: 100%
}
}
</style>
<head>
<!-- <div class="row"> -->
<h1 >In Orbit🌏 Reprogramming for CubeSats🛰️</h1>
<div class="underline"></div>
<!-- </div> -->
</head>
<body>
Flight software developed in a minimum stipulated time lacks completness and also contains various bugs in it. We can program the payload/satellite by the
time it is on ground with us. Once the satellite has launched, we don't have much control on it. This lack of control can be rectified if we
had a functionality to reprogram the satellite even it is in the orbit. This project demonstrates one such functionality implementation of reprogramming
both FPGA as well as the Non Volatile Storage in space over a space grade SOC: "Microsemi Smartfusion2".
<ul>
<li>
<h5>Work Done</h5>
<ul>
<li>Designed, tested and implemented an architecture to upload the redundant flight software image on the external storage flash on custom OBC.</li>
<li>Successfully implemented reprogramming of both FPGA and Non Volatile storage.</li>
</ul>
</li>
<li>
<h5>Reference Links</h5>
<ul>
<li>Slide Number 23-26 of <a href = "https://docs.google.com/presentation/d/15xgcesqaS0ZVvyn4XKYYmoyDSJzYqhrX/edit?usp=drive_link&ouid=116558160713382706522&rtpof=true&sd=true">Final Year Project PPT</a></li>
<li>Chapter 5 of <a href = "https://drive.google.com/file/d/12W9mn8I_wnrKzfhS47hk8FLSlwPC43vJ/view?usp=drive_link">Final Year Project Report</a></li>
<li><a href = "https://github.com/PratikAher20/SF2_Reprogramming">SF2-Reprogramming Project Files</a></li>
<li>My Experience and detailed Information about the project: <a href = "proj_4.html" >In Orbit Reprogramming for CubeSats</a></li>
</ul>
</li>
</ul>
<div class="text-center">
<h2><a href = "index.html#project-section">🔙🏃♂️</a></h2>
</div>
</body>
</html>