Skip to content

Commit 33e44f1

Browse files
committed
Update to add installer for ESP32-C6
1 parent e177724 commit 33e44f1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

_includes/download/board.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ <h3>CircuitPython {{ version.version }}</h3>
134134
{% for extension in version.extensions %}
135135
<a class="download-button {% if version.stable %}stable{% else %}unstable{% endif %} {{ extension }}" href="{{ download_url }}/en_US/adafruit-circuitpython-{{ board_id }}-en_US-{{ version.version }}.{{ extension }}">DOWNLOAD .{{ extension | upcase }} NOW <i class="fas fa-download" aria-hidden="true"></i></a>
136136
{% endfor %}
137-
{% if page.family == 'esp32s2' or page.family == 'esp32c3' or page.family == 'esp32s3' or page.family == 'esp32' %}
137+
{% if page.family == 'esp32s2' or page.family == 'esp32c3' or page.family == 'esp32s3' or page.family == 'esp32' or page.family == 'esp32c6' %}
138138
<button is="cp-install-button" class="installer-button" boardid="{{ board_id }}"
139139
{% for extension in version.extensions %}
140140
{{ extension }}file="{{ download_url }}/en_US/adafruit-circuitpython-{{ board_id }}-en_US-{{ version.version }}.{{ extension }}"

_layouts/download.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h2>Contribute</h2>
2727
</div>
2828
</div>
2929

30-
{% if page.family == 'esp32' or page.family == 'esp32s2' or page.family == 'esp32c3' or page.family == 'esp32s3' %}
30+
{% if page.family == 'esp32' or page.family == 'esp32s2' or page.family == 'esp32c3' or page.family == 'esp32s3' or page.family == 'esp32c6' %}
3131
<script src="https://cdn.jsdelivr.net/gh/adafruit/[email protected]/dist/cpinstaller.min.js" type="module"></script>
3232
{% endif %}
3333
<script src="/assets/javascript/download.js"></script>

tools/generate-board-info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import frontmatter
55
import argparse
66

7-
INCLUDED_CHIP_FAMILIES = ("esp32s2", "esp32s3", "esp32c3", "esp32")
7+
INCLUDED_CHIP_FAMILIES = ("esp32s2", "esp32s3", "esp32c3", "esp32", "esp32c6")
88
BOOTLOADER_URL_PREFIX = (
99
"https://adafruit-circuit-python.s3.amazonaws.com/bootloaders/esp32/"
1010
)

0 commit comments

Comments
 (0)