Files
lnh-team.github.io/dspico_hw.html
2025-11-25 14:05:20 -05:00

150 lines
6.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>DSpico - Hardware | LNH Team</title>
<!-- Material Symbols -->
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined&display=swap" rel="stylesheet">
<!-- Font of DSpico logo and for the content of webpage -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- CSS externo -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="navbar">
<div class="nav-left">
<img src="assets/lnh-logo.png" alt="Logo" class="logo-icon1">
</div>
<nav class="nav-links">
<a href="index.html" title="Home"><span class="material-symbols-outlined nav-icon">home</span></a>
<a href="dspico_hw.html" title="DSpico Hardware"><span class="material-symbols-outlined nav-icon">memory</span></a>
<a href="dspico_sw.html" title="DSpico Software"><span class="material-symbols-outlined nav-icon">folder_code</span></a>
</nav>
</header>
<div class="hero">
<div class="logo-title">
<img src="assets/dspico-logo.png" alt="DSpico logo" class="logo-icon2">
<h1>DSpico</h1>
</div>
<!-- Buttons of top of webpage -->
<div class="buttons">
<a href="dspico_hw.html" class="btn secondary">
<img src="assets/dspico-logo.png" style="width: auto; height: 50px; vertical-align: middle; border-radius: 0;">DSpico Hardware
</a>
<a href="dspico_sw.html" class="btn secondary">
<img src="assets/picolauncher-logo.png" style="width: auto; height: 50px; vertical-align: middle; border-radius: 0;">DSpico Software
</a>
</div>
</div>
<!-- Fabrication Section -->
<section id="fabrication">
<div class="container">
<div class="logo-title">
<h2 style="text-align: center;">
<img src="assets/dspico-logo.png" style="width: auto; height: 50px; vertical-align: middle;">
DSpico Flashcart
</h2>
</div>
<p class="lead">
The DSpico is the open-source flashcart from the LNH Team. Designed for both DS and DSi consoles, it features fully open hardware and firmware built on the RP2040 microcontroller.
</p>
<br><br>
<img src="assets/dspico-features.png" alt="DSpico" class="responsive-img" style="max-width: 600px; max-height: 400px; width: 90%; height: auto;" />
<br>
<!-- Table with features -->
<div class="features_table">
<div class="item"><span class="material-symbols-outlined big-icon">memory</span> <br>RP2040 microcontroller</div>
<div class="item"><span class="material-symbols-outlined big-icon">storage</span> <br>16 MBit (= 2 MByte) flash memory</div>
<div class="item"><span class="material-symbols-outlined big-icon">usb</span> <br>Micro-USB port</div>
<div class="item"><span class="material-symbols-outlined big-icon">sd_card</span> <br>Micro SD slot</div>
<div class="item"><span class="material-symbols-outlined big-icon">engineering</span> <br>Development port</div>
<div class="item"><span class="material-symbols-outlined big-icon">lightbulb_2</span> <br>Two LEDs</div>
<div class="item"><span class="material-symbols-outlined big-icon">energy_savings_leaf</span> <br>Low power consumption: ~57mW</div>
<div class="item"><span class="material-symbols-outlined big-icon">electrical_services</span> <br>Dual power support</div>
</div>
<br>
<p class="lead">
All DSpico fabrication files are open-source and available for download or inspection.
</p>
<img src="assets/assa2.png" alt="DSpico" class="responsive-img" />
<div class="buttons">
<a href="https://github.com/LNH-team/dspico-hardware" class="btn build-btn">
<img src="assets/github-mark.png" style="width: 24px; height: 24px; vertical-align: middle; filter: invert(1);" alt="GitHub">
<span class="btn-text">Repository</span>
</a>
</div>
<div class="build-content hidden-content"></div>
</div>
</section>
<!-- Picofirmware Section -->
<section id="pico-firmware">
<div class="container">
<div class="logo-title">
<h2 style="text-align: center;">
<img src="assets/picofirmware-logo.png" style="width: auto; height: 50px; vertical-align: middle;">
DSpico Firmware
</h2>
</div>
<p class="lead">The DSpico Firmware is the official firmware for the DSpico, running on the RP2040 microcontroller.</p>
<img src="assets/rp2040-3.png" alt="RP2040" class="responsive-img" />
<p class="tagline">Versatile. Flexible.</p>
<p class="final-line">The DSpico firmware is compatible with modified and unmodified DS, DSi and 3DS consoles, allowing you to use DSpico on any console you own.</p>
<br>
<p class="final-line">Our firmware implements a multi-bootloader solution, allowing you to configure up to two different bootloaders that will be used depending on which console-type (DS or DSi/3DS) you are using. The DSpico firmware takes care of detecting your console, and loading the appropriate bootloader.</p>
<br>
<p class="final-line">Our firmware comes with support for WRFUxxed: An all-access DSi-mode exploit that allows DSpico to be run on unmodified DSi and 3DS consoles, with full access to DSi exclusive features. Ntrboot for 3DS and DSi is also supported.</p>
<br>
<p class="tagline">Fast. Reliable.</p>
<p class="final-line">The DSpico firmware is fast, reaching speeds up to ~6MB/s when reading from a microSD card.</p>
<p class="final-line">Our firmware makes the DSpico power-efficient, only consuming ~57mW on average, giving you more play time with no compromise.</p>
<div class="buttons">
<a href="https://github.com/LNH-team/dspico-firmware" class="btn build-btn">
<img src="assets/github-mark.png" style="width: 24px; height: 24px; vertical-align: middle; filter: invert(1);" alt="GitHub">
<span class="btn-text">Repository</span>
</a>
</div>
<div class="build-content hidden-content"></div>
</div>
</section>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>