<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Developers on GB-Link Docs</title><link>/developers/</link><description>Recent content in Developers on GB-Link Docs</description><generator>Hugo</generator><language>en</language><copyright>Copyright (c) GB-Link</copyright><lastBuildDate>Wed, 08 Jul 2026 00:00:00 +0000</lastBuildDate><atom:link href="/developers/index.xml" rel="self" type="application/rss+xml"/><item><title>Firmware Architecture</title><link>/developers/firmware-architecture/</link><pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate><guid>/developers/firmware-architecture/</guid><description>&lt;p&gt;The GB-Link firmware turns an RP2040 into a USB-to-Game Boy Link Cable adapter, bridging retro hardware to modern web clients.&lt;/p&gt;</description></item><item><title>Hardware &amp; Wiring</title><link>/developers/hardware-wiring/</link><pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate><guid>/developers/hardware-wiring/</guid><description>&lt;p&gt;The firmware uses the RP2040 PIO to communicate with the Game Boy link port. This page documents pin assignments for DIY builders.&lt;/p&gt;</description></item><item><title>USB Command Protocol</title><link>/developers/usb-command-protocol/</link><pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate><guid>/developers/usb-command-protocol/</guid><description>&lt;p&gt;Commands are sent over the WebUSB command endpoint. This reference is for developers building web clients or debugging adapter behavior.&lt;/p&gt;</description></item><item><title>How GBA Online Works</title><link>/developers/how-gba-online-works/</link><pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate><guid>/developers/how-gba-online-works/</guid><description>&lt;p&gt;Connecting two Game Boy Advances directly over the internet is impossible due to strict timing requirements. GB-Link solves this with a relay architecture that decouples game data from real-time link timing.&lt;/p&gt;</description></item><item><title>Building from Source</title><link>/developers/building-from-source/</link><pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate><guid>/developers/building-from-source/</guid><description>&lt;p&gt;Build the GB-Link firmware locally for development or custom board targets.&lt;/p&gt;
&lt;h2 id="prerequisites"&gt;Prerequisites&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;

&lt;a class="link link--text" href="https://docs.zephyrproject.org/latest/develop/getting_started/index.html" rel="external noopener noreferrer" target="_blank"&gt;Zephyr SDK&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Python 3 with &lt;code&gt;west&lt;/code&gt; package manager&lt;/li&gt;
&lt;li&gt;CMake and a C/C++ toolchain&lt;/li&gt;
&lt;li&gt;Git&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The firmware is built against &lt;strong&gt;Zephyr 3.7.99&lt;/strong&gt;. Newer versions should also be compatible.&lt;/p&gt;</description></item><item><title>Porting to Other MCUs</title><link>/developers/porting-to-other-mcus/</link><pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate><guid>/developers/porting-to-other-mcus/</guid><description>&lt;p&gt;The GB-Link firmware is designed to be largely MCU-agnostic thanks to Zephyr RTOS. The original Celio project targeted STM32F07; migrating to RP2040 required only minimal to moderate effort.&lt;/p&gt;</description></item><item><title>Contributing</title><link>/developers/contributing/</link><pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate><guid>/developers/contributing/</guid><description>&lt;p&gt;GB-Link is an open-source project. Contributions are welcome across firmware, web clients, hardware, and documentation.&lt;/p&gt;
&lt;h2 id="repositories"&gt;Repositories&lt;/h2&gt;
&lt;table&gt;
 &lt;thead&gt;
 &lt;tr&gt;
 &lt;th&gt;Component&lt;/th&gt;
 &lt;th&gt;Repository&lt;/th&gt;
 &lt;th&gt;License&lt;/th&gt;
 &lt;/tr&gt;
 &lt;/thead&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;td&gt;Firmware&lt;/td&gt;
 &lt;td&gt;

&lt;a class="link link--text" href="https://github.com/GB-Link/GBLink-Firmware" rel="external noopener noreferrer" target="_blank"&gt;GB-Link/GBLink-Firmware&lt;/a&gt;&lt;/td&gt;
 &lt;td&gt;GPL-3.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Web clients&lt;/td&gt;
 &lt;td&gt;

&lt;a class="link link--text" href="https://github.com/GB-Link" rel="external noopener noreferrer" target="_blank"&gt;GB-Link organization on GitHub&lt;/a&gt;&lt;/td&gt;
 &lt;td&gt;GPL-3.0&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Hardware (PCB)&lt;/td&gt;
 &lt;td&gt;KiCad designs (CERN-OHL-S v2, releasing with V2 shipment)&lt;/td&gt;
 &lt;td&gt;CERN-OHL-S v2&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Documentation&lt;/td&gt;
 &lt;td&gt;This site&lt;/td&gt;
 &lt;td&gt;—&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="how-to-contribute"&gt;How to contribute&lt;/h2&gt;
&lt;h3 id="firmware"&gt;Firmware&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Fork 

&lt;a class="link link--text" href="https://github.com/GB-Link/GBLink-Firmware" rel="external noopener noreferrer" target="_blank"&gt;GBLink-Firmware&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Create a feature branch&lt;/li&gt;
&lt;li&gt;Make your changes and test on hardware&lt;/li&gt;
&lt;li&gt;Open a pull request with a clear description&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;See 

&lt;a class="link link--text" href="/developers/building-from-source/"&gt;Building from Source&lt;/a&gt; for the development setup.&lt;/p&gt;</description></item></channel></rss>