-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle-option-command.html
More file actions
61 lines (61 loc) · 3.03 KB
/
Copy pathstyle-option-command.html
File metadata and controls
61 lines (61 loc) · 3.03 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Command Center - flasher.cloud</title>
<link rel="stylesheet" href="./style-options.css" />
</head>
<body class="command">
<div class="option-shell">
<aside class="rail">
<a class="brand" href="./siteStyleOptions.html"><img src="./logo.svg" alt="" /><span>flasher.cloud</span></a>
<ul class="nav-list">
<li><a href="#"><span>ESP manifest installer</span><small>Web Serial</small></a></li>
<li><a href="#"><span>ESP raw BIN flasher</span><small>Web Serial</small></a></li>
<li><a href="#"><span>DFU / DfuSe flasher</span><small>WebUSB</small></a></li>
<li><a href="#"><span>UF2 bootloader assistant</span><small>File + Serial</small></a></li>
<li><a href="#"><span>Serial terminal</span><small>Web Serial</small></a></li>
</ul>
<p class="eyebrow">Supported device types</p>
<ul class="device-list">
<li><a href="#"><span>ESP32-S3</span><small>ESP BIN</small></a></li>
<li><a href="#"><span>RP2040</span><small>UF2</small></a></li>
<li><a href="#"><span>STM32 DFU</span><small>DFU</small></a></li>
<li><a href="#"><span>Generic UART</span><small>Terminal</small></a></li>
</ul>
</aside>
<main class="stage">
<section class="hero">
<div>
<p class="eyebrow">Hosted WebSerial and WebUSB flashing utilities</p>
<h1>Flash microcontrollers from the browser.</h1>
<p>
A focused command surface for firmware installs, raw binary flashing, DFU downloads, UF2 preparation,
and serial diagnostics.
</p>
<div class="actions"><a class="button" href="#">Start flashing</a><a class="button" href="#">View flashers</a></div>
</div>
<img class="hero-logo" src="./logo.svg" alt="flasher.cloud logo" />
</section>
<section class="status-grid">
<article class="status"><h3>Secure context</h3><p>Ready - HTTPS or localhost</p></article>
<article class="status"><h3>Web Serial</h3><p>Ready - ESP, UART, bootloader reset</p></article>
<article class="status"><h3>WebUSB</h3><p>Ready - DFU and descriptor access</p></article>
</section>
<section class="workbench">
<aside class="panel control-stack">
<p class="eyebrow">ESP raw BIN flasher</p>
<label class="field">Port<span>USB Serial: disconnected</span></label>
<label class="field">Baud<span>921600</span></label>
<label class="field">Offset<span>0x10000</span></label>
<div class="toolbar"><button>Connect</button><button>Flash</button></div>
</aside>
<pre class="console">[ready] Select a port and firmware image.
[hint] Bootloader reset is available for ESP-family boards.
[idle] Waiting for device...</pre>
</section>
</main>
</div>
</body>
</html>