-
Notifications
You must be signed in to change notification settings - Fork 0
/
Motherboard.html
executable file
·316 lines (259 loc) · 7.13 KB
/
Motherboard.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>MOBO_R1</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
/* Style the header */
.header {
padding: 50px;
text-align: center;
color: black;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 300px;
margin: auto;
text-align: center;
background-color: white;
}
.title {
color: black;
font-weight: bold;
font-size: 20px;
}
navButton {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
a {
text-decoration: none;
font-size: 22px;
color: black;
}
b {
text-decoration: none;
font-size: 14px;
color: black;
}
navButton:hover, a:hover {
opacity: 0.7;
}
navButton:hover, b:hover {
opacity: 0.7;
}
.container {
position: relative;
text-align: center;
color: black;
}
.centered {
top: 85%;
left: 50%;
font-size: 45px;
position: absolute;
transform: translate(-50%, -50%);
}
.subCentered {
position: absolute;
transform: translate(-50%, -50%);
top: 10%;
left: 50%;
font-size: 25px;
}
/* Increase the font size of the h1 element */
.header h1 {
font-size: 40px;
position: relative;
text-align: center;
color: black;
}
.header h1.center{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/* Style the top navigation bar */
.navbar {
overflow: hidden;
background-color: #333;
}
/* Style the navigation bar links */
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
.navbar b {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
/* Right-aligned link */
.navbar a.right {
float: right;
}
/* Change color on hover */
.navbar a:hover {
background-color: #ddd;
color: black;
}
.navbar b:hover {
background-color: #ddd;
color: black;
}
/* Column container */
.row {
display: flex;
flex-wrap: wrap;
}
/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
flex: 30%;
background-image: linear-gradient(to bottom right, #cc3300, white);
padding: 20px;
}
/* Main column */
.main {
flex: 70%;
background-image: linear-gradient(to bottom right, white, #66ccff);
padding: 20px;
}
/* Fake image, just for this example */
.fakeimg {
background-color: #000000;
width: 100%;
padding: 10px;
}
.aboutmepic {
width: 100%;
padding-bottom: 5px;
padding-top: 20px;
}
.fancypic {
width: 100%;
opacity: 0.6;
}
/* Footer */
.footer {
padding: 20px;
text-align: center;
background: #ddd;
}
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
.row {
flex-direction: column;
}
}
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
.navbar a {
float: none;
width:100%;
}
}
@media screen and (max-width: 400px) {
.navbar b {
float: none;
width:100%;
}
}
</style>
</head>
<body>
<div class="header">
<div class="container">
<img class="fancypic" src="Pics/mobov1_sch.png" alt="">
<div class="centered">*oof*</div>
</div>
</div>
<div class="navbar">
<a href="index.html">Home</a>
<a href="/" class="right">Main</a>
</div>
<div class="row">
<div class="main">
<h2> The Motherboard</h2>
<h5>Can you tell that was my first schematic? It hurts to look at now. </h5>
<!<img src="Pics/MEP.jpg" alt="MEP" style="width:60%">
<p> All of these files are on
<a href="https://github.com/ParadigmHyperloop/electrical/tree/master/Motherboard"
style="font-size: 16px; color:red">Github</a>
with tags for each version we deemed final enough to procure. We did our best to be good
git stewards but still managed to break the repo once or twice.
</p>
<!<br>
<h2> Rev 1.2 </h2>
<h5>I have so many questions for my past self</h5>
<img src="Pics/ADC_MUX.png" alt="MEP" style="width:40%">
<p> The main function of this board is to collect all of the analog signals around the Pod. The circuit in is
reused multiple times. An analog MUX is used to select an analog channel, which is fed through a buffer to the flight computer's
(Beaglebone Black) internal ADC for conversion. There were numerous areas to improve this solution.
<ul>
<li>The circuit doesn't take into account the 90-200 Ohms of resistance from the MUX</li>
<li>The buffer has a mix of sensor types coming in, each with different frequency characteristics</li>
<li>Definitely didn't simulate the op-amp. </li>
<! gotta plot that one in spice^. >
<li>The Beaglebone Black has a max ADC voltage of 1.8V. Most of the sensors are 0-5V scale</li>
<li>At a systems level: we never considered crosstalk and other errors on the line due to switching. </li>
<li>I picked an $8 op-amp for no other reason than "high speed". At least I buffered the ADC? </li>
<li>The MUX can accept 5V.. I'm not sure why I went to the trouble of making another rail</li>
</ul>
</p>
<img src="Pics/octo.png" alt="MEP" style="width:60%">
<p><br>
The first iteration of this board just about maxed out the GPIOs on the Beaglebone. (this is from memory.. need to
double check) These pins have some special functionality when used for display applications and have quirks on boot. They boot
in an indeterminite state and we were concerned the relays could intermittently be fired. So we decided to use... a Schmitt Trigger
inverter that is triggered by the Beaglebones POWER_GOOD signal to sink each optocoupler cathode. The GPIOs are fed through a noninverting open drain buffer.
This shouldn't work. There are no pullups and return current is going into the inverter?
<br>
<img src="Pics/octo_sub.png" alt="MEP" style="width:60%">
</p>
But wait there's more!
<ul>
<li>The 3V3 rail has two regulators on the same net to boost available current. I should have picked a better part.</li>
<li>The DACs were 3x3mm QFNs that we had zero business trying to solder on to the board</li>
<li>All of the power is a label or global net instead of a proper power flag. One mispelling and a rail would be toast.</li>
<li>General use of hierarchical sheets is just wrong.</li>
</ul>
<p>
We compiled all of our lessons learned after Competition I and went back to work. The motherboard was brought up to Rev 2:
<a href="Motherboard_R2.html"
style="font-size: 16px; color:red">The Motherboard Rev 2.</a>
</p>
<p>
</p>
</div>
</div>
<div class="footer">
<h2>Footer</h2>
</div>
</body>
</html>