Skip to content

Commit 403ce43

Browse files
balloobclaude
andauthored
Document ESP32 C61 and P4 chip variants support (#672)
* Add ESP32-C61 chip support Add the ESP32-C61 variant (WiFi 6 only, no Bluetooth) to the supported chip families. This chip is already supported by esptool-js since v0.4.7. * Add ESP32-P4 chip support Add the ESP32-P4 variant to the supported chip families. This is a high-performance chip with RISC-V dual-core processor. Already supported by esptool-js. --------- Co-authored-by: Claude <[email protected]>
1 parent 1ea28ab commit 403ce43

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,8 +484,8 @@ <h3 id="manifest">Creating your manifest</h3>
484484
install. It allows specifying different builds for the different types
485485
of ESP devices. Current supported chip families are
486486
<code>ESP8266</code>, <code>ESP32</code>, <code>ESP32-C2</code>,
487-
<code>ESP32-C3</code>, <code>ESP32-C5</code>, <code>ESP32-C6</code>, <code>ESP32-H2</code>,
488-
<code>ESP32-S2</code> and <code>ESP32-S3</code>. The correct build will
487+
<code>ESP32-C3</code>, <code>ESP32-C5</code>, <code>ESP32-C6</code>, <code>ESP32-C61</code>,
488+
<code>ESP32-H2</code>, <code>ESP32-P4</code>, <code>ESP32-S2</code> and <code>ESP32-S3</code>. The correct build will
489489
be automatically selected based on the type of the connected ESP device.
490490
</p>
491491
<pre>

src/const.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ export interface Build {
1111
| "ESP32-C3"
1212
| "ESP32-C5"
1313
| "ESP32-C6"
14+
| "ESP32-C61"
1415
| "ESP32-H2"
16+
| "ESP32-P4"
1517
| "ESP32-S2"
1618
| "ESP32-S3"
1719
| "ESP8266";

0 commit comments

Comments
 (0)