-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcredits.html
More file actions
210 lines (199 loc) · 10.4 KB
/
Copy pathcredits.html
File metadata and controls
210 lines (199 loc) · 10.4 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Credits & Licenses - Xbox One/Series Sonus toolkit</title>
<!-- Open Graph / Discord link preview. Absolute URLs required (unlike
the app's own relative asset links) since these are read by
external scrapers, not resolved against the page's own location. -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://xboxoneresearch.github.io/xbox-one-sonus/credits.html" />
<meta property="og:title" content="Credits & Licenses — Xbox One/Series Sonus Toolkit" />
<meta property="og:description" content="Open-source projects and licenses this toolkit is built on." />
<meta property="og:image" content="https://xboxoneresearch.github.io/xbox-one-sonus/sonus-one.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1800" />
<meta property="og:image:height" content="700" />
<!-- Twitter/X card (falls back to the og:* tags above for anything not repeated here) -->
<meta name="twitter:card" content="summary_large_image" />
<link rel="stylesheet" href="/ui/styles.css" />
</head>
<body>
<header class="app-header">
<div class="app-header-inner">
<div class="app-header-contact">
<span>CONTACT:</span>
<a href="https://discord.gg/VcdSfajQGK" target="_blank" rel="noopener">Xbox-Scene</a>
<a href="https://discord.com/invite/rPF3mfgSF4" target="_blank" rel="noopener">craftbenmine</a>
</div>
<div class="app-header-links">
<a href="https://github.com/xboxoneresearch/xbox-one-sonus/issues" target="_blank" rel="noopener">Problems?</a>
<a href="https://github.com/xboxoneresearch/xbox-one-sonus" target="_blank" rel="noopener">Source</a>
</div>
</div>
</header>
<main class="app">
<h1>Credits & Licenses</h1>
<p class="subtitle">
<a href="./index.html">← Back to the toolkit</a>
</p>
<p>
This toolkit builds directly on the hardware research, protocol reverse-engineering, and Python audio
tooling published by <strong>Xbox One Research</strong>, and on a handful of open-source libraries and
firmware projects. Thanks to everyone below.
</p>
<section>
<h2>Thanks</h2>
<table class="pin-table">
<thead>
<tr><th>Name</th><th>Contribution</th></tr>
</thead>
<tbody>
<tr><td><a href="https://github.com/craftbenmine" target="_blank" rel="noopener">craftbenmine</a></td><td>Technical assistance and testing</td></tr>
<tr><td><a href="https://github.com/FJCFJC123" target="_blank" rel="noopener">flynnyfoo</a></td><td>Reverse engineering assistance, testing, delivering nice soundtracks</td></tr>
<tr><td>HALO [AUS]</td><td>Testing & Feedback</td></tr>
<tr><td><a href="https://github.com/ACE-AU" target="_blank" rel="noopener">ACE</a></td><td>Soldering diagram</td></tr>
</tbody>
</table>
</section>
<section>
<h2>Original project</h2>
<table class="pin-table">
<thead>
<tr><th>Project</th><th>Author</th><th>License</th><th>Used for</th></tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/xboxoneresearch/DuRFUnitI2C" target="_blank" rel="noopener">DuRFUnitI2C</a></td>
<td><a href="https://github.com/xboxoneresearch" target="_blank" rel="noopener">Xbox One Research</a></td>
<td><a href="https://github.com/xboxoneresearch/DuRFUnitI2C/blob/main/LICENSE" target="_blank" rel="noopener">MIT</a></td>
<td>
Hardware research, DIY mod & wiring documentation, the RF Unit I2C bootloader protocol, and the
original <code>vpe.py</code> VPE sound codec this toolkit runs in-browser.
</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Pi Pico firmware</h2>
<table class="pin-table">
<thead>
<tr><th>Project</th><th>Author</th><th>License</th><th>Used for</th></tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/Nicolai-Electronics/rp2040-i2c-interface" target="_blank" rel="noopener">rp2040-i2c-interface</a></td>
<td>Nicolai Electronics</td>
<td>MIT</td>
<td>Base for this repo's I2C-adapter firmware (<code>firmware/i2c-adapter</code>), adapted from the MCH2022 badge to the Pi Pico.</td>
</tr>
<tr>
<td><a href="https://github.com/rgrr/yapicoprobe" target="_blank" rel="noopener">yapicoprobe</a></td>
<td>rgrr (fork of Raspberry Pi's <a href="https://github.com/raspberrypi/picoprobe" target="_blank" rel="noopener">picoprobe</a>)</td>
<td>MIT</td>
<td>CMSIS-DAP v2 probe firmware (<code>public/firmware/picoprobe.*</code>) used for the Initial SWD Flash step.</td>
</tr>
<tr>
<td><a href="https://github.com/raspberrypi/pico-sdk" target="_blank" rel="noopener">Raspberry Pi Pico SDK</a> & <a href="https://github.com/hathach/tinyusb" target="_blank" rel="noopener">TinyUSB</a></td>
<td>Raspberry Pi Foundation / Ha Thach</td>
<td>BSD-3-Clause / MIT</td>
<td>RP2040 firmware toolchain and USB stack for the I2C-adapter and CMSIS-DAP probe firmware.</td>
</tr>
<tr>
<td><a href="https://github.com/raspberrypi/picotool" target="_blank" rel="noopener">picotool</a>
(with <a href="https://github.com/muellan/clipp" target="_blank" rel="noopener">clipp</a>,
<a href="https://github.com/littlefs-project/littlefs" target="_blank" rel="noopener">littlefs</a>,
oofatfs, <a href="https://github.com/nlohmann/json" target="_blank" rel="noopener">nlohmann/json</a>)</td>
<td>Raspberry Pi Foundation & respective authors</td>
<td>BSD-3-Clause / MIT</td>
<td>Build-time dependency for producing/inspecting the firmware images bundled in this repo.</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Python sound tooling (runs in-browser via Pyodide)</h2>
<table class="pin-table">
<thead>
<tr><th>Project</th><th>Author</th><th>License</th><th>Used for</th></tr>
</thead>
<tbody>
<tr>
<td><a href="https://pyodide.org/" target="_blank" rel="noopener">Pyodide</a></td>
<td>Pyodide contributors</td>
<td>MPL-2.0</td>
<td>WASM CPython runtime the Custom Sound Editor step loads on demand, so <code>vpe.py</code> can run unmodified in the browser.</td>
</tr>
<tr>
<td><a href="https://numpy.org/" target="_blank" rel="noopener">NumPy</a> &
<a href="https://scipy.org/" target="_blank" rel="noopener">SciPy</a></td>
<td>NumPy & SciPy developers</td>
<td>BSD-3-Clause</td>
<td>Audio codec math (Siren14 encode/decode) inside <code>vpe.py</code>.</td>
</tr>
<tr>
<td><a href="https://github.com/micropython/micropython" target="_blank" rel="noopener">MicroPython</a>
(<code>pyboard.py</code>, Pico UF2 firmware)</td>
<td>MicroPython project</td>
<td>MIT</td>
<td>Referenced by DuRFUnitI2C's tooling; see <code>vendor/DuRFUnitI2C/CREDITS</code>.</td>
</tr>
<tr>
<td><a href="https://pypi.org/project/pyserial/" target="_blank" rel="noopener">pyserial</a></td>
<td>pyserial contributors</td>
<td>BSD-3-Clause</td>
<td>Referenced by DuRFUnitI2C's tooling; see <code>vendor/DuRFUnitI2C/CREDITS</code>.</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Browser & build tooling</h2>
<table class="pin-table">
<thead>
<tr><th>Project</th><th>Author</th><th>License</th><th>Used for</th></tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/ARMmbed/dapjs" target="_blank" rel="noopener">dapjs</a></td>
<td>Arm Mbed</td>
<td>Apache-2.0</td>
<td>WebUSB CMSIS-DAP / SWD transport used by the Initial SWD Flash step.</td>
</tr>
<tr>
<td><a href="https://vitejs.dev/" target="_blank" rel="noopener">Vite</a>,
<a href="https://www.typescriptlang.org/" target="_blank" rel="noopener">TypeScript</a> &
<a href="https://vitest.dev/" target="_blank" rel="noopener">Vitest</a></td>
<td>Respective open-source maintainers</td>
<td>MIT</td>
<td>Build, type-checking, and test tooling for this toolkit.</td>
</tr>
</tbody>
</table>
</section>
<p class="step-intro">
This page lists the origin and license of every non-trivial component in the toolkit; it isn't a substitute
for the full license texts, which travel with each project's own source (see <code>vendor/</code> and
<code>firmware/i2c-adapter/</code> in <a href="https://github.com/xboxoneresearch/xbox-one-sonus" target="_blank" rel="noopener">this repo's source</a>).
</p>
<section>
<h2>AI-assisted development</h2>
<p>
🤖 Large parts of this toolkit (code, tests, and docs) were generated with
<a href="https://claude.com/claude-code" target="_blank" rel="noopener">Claude Code</a> (Anthropic's Claude),
with human review and testing against real hardware.
</p>
</section>
</main>
<footer class="app-footer">
<p>
Built on <a href="https://github.com/xboxoneresearch/DuRFUnitI2C" target="_blank" rel="noopener">DuRFUnitI2C</a>
by <a href="https://github.com/xboxoneresearch" target="_blank" rel="noopener">Xbox One Research</a>
- <a href="./index.html">Back to the toolkit</a>
</p>
</footer>
<script type="module" src="/build-info.ts"></script>
</body>
</html>