-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoconut_ham.html
More file actions
107 lines (93 loc) · 3.81 KB
/
coconut_ham.html
File metadata and controls
107 lines (93 loc) · 3.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base target="_blank">
<title>Coconut CubeSat Amateur Radio Information</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
line-height: 1.6;
}
a,
a:visited {
color: #1a0dab;
}
ul {
list-style: none;
}
li {
margin-bottom: .2em;
}
.container {
max-width: 800px;
margin: 0 auto;
}
footer img {
width: 15%;
height: auto;
margin: 10px;
}
#coconutPhoto {
height: auto;
width: 50%;
margin: 0 25%;
}
</style>
</head>
<body>
<div class="container">
<a href="index.html" target="_self">← Back to Home</a>
<h1>Coconut CubeSat Amateur Radio Information</h1>
<img src="images/coconut_logo.png" alt="Coconut CubeSat Mission Logo" style="width:40%;height:auto;margin: 0 30%;">
<h2>Overview</h2>
<p>
Coconut is a 1U CubeSat developed by the Sun Devil Satellite Laboratory at Arizona State University. It is
expected to be launched to the ISS on the Cygnus NG-24 ISS resupply mission.
The primary mission of Coconut is to provide a digipeater service for amateurs using inexpensive, low-powered LoRa Modules.
This will allow students at ASU and other amateur radio users to interact using inexpensive ground nodes. Coconut
is being built 100% by students. It is a proof of concept that demonstrates the capabilities of students to build
their own CubeSat. In addition, we will host a store and forward experiment, whereby amateurs can register on our
project website, and then have data that they uplink, again using LoRa, captured at our ground station, and then
forwarded by means of their choice to the specified recipient. The mission is oriented to students to engage in
hands-on learning and experience with spacecraft hardware and radio transmission. It will also allow hams
worldwide to utilize a standard digipeater function for the entire lifetime of the satellite, as well as give them
the opportunity to participate in a store-and-forward experiment.
</p>
<a href="https://github.com/ASU-SDSL/coconut-fsw/blob/orbit/orbit.txt">Coconut TLE (currently using the ISS TLE as a
placeholder)</a>
<h2>Link Information</h2>
<ul>
<li>
Uplink/Downlink: 437.400 MHz (LoRa @ 1W TX)
<ul>
<li>Bandwidth: 62.5 kHz</li>
<li>Spreading Factor: 10</li>
<li>Coding Rate: 5</li>
<li>Sync Word: 0x12</li>
<li>Preamble Length: 8</li>
</ul>
</li>
<li><a
href="https://docs.google.com/spreadsheets/d/1Q-fPnBuUnnPDYk2wUIeAe1VnGKU3qRZZANcm7Eob2L0/edit?usp=sharing">Downlink
Packet Structures (Google Sheets)</a></li>
<li><a href="https://github.com/ASU-SDSL/coconut-fsw/blob/orbit/kaitai">Heartbeat Kaitai
Packet Structure</a></li>
</ul>
<img id="coconutPhoto" src="images/coconut_flight_ready.jpeg" alt="Photo of flight-ready Coconut" />
<h2>Additional Information</h2>
<ul>
<li><a href="https://iaru.amsat-uk.org/finished_detail.php?serialnum=1050">IARU Frequency Coordination</a></li>
<li><a href="https://github.com/ASU-SDSL/coconut-fsw">Coconut's Open Source Flight Software</a></li>
</ul>
<footer style="text-align: center; margin-top: 40px;">
<img src="images/sdsl-logo.png" alt="Sun Devil Satellite Laboratory Logo" style="width:20%;height:auto;">
<img src="images/sponsor_logos/asu.png" alt="Arizona State University Logo">
<img src="images/sponsor_logos/CSLI_logo_FULL-COLOR-1024x1024.png">
<p>© 2026 Sun Devil Satellite Laboratory. All rights reserved.</p>
</footer>
</div>
</body>
</html>