Update to add installer for ESP32-C6
This commit is contained in:
parent
e1777249b6
commit
33e44f15ab
3 changed files with 3 additions and 3 deletions
|
|
@ -134,7 +134,7 @@
|
|||
{% for extension in version.extensions %}
|
||||
<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>
|
||||
{% endfor %}
|
||||
{% if page.family == 'esp32s2' or page.family == 'esp32c3' or page.family == 'esp32s3' or page.family == 'esp32' %}
|
||||
{% if page.family == 'esp32s2' or page.family == 'esp32c3' or page.family == 'esp32s3' or page.family == 'esp32' or page.family == 'esp32c6' %}
|
||||
<button is="cp-install-button" class="installer-button" boardid="{{ board_id }}"
|
||||
{% for extension in version.extensions %}
|
||||
{{ extension }}file="{{ download_url }}/en_US/adafruit-circuitpython-{{ board_id }}-en_US-{{ version.version }}.{{ extension }}"
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ layout: default
|
|||
</div>
|
||||
</div>
|
||||
|
||||
{% if page.family == 'esp32' or page.family == 'esp32s2' or page.family == 'esp32c3' or page.family == 'esp32s3' %}
|
||||
{% if page.family == 'esp32' or page.family == 'esp32s2' or page.family == 'esp32c3' or page.family == 'esp32s3' or page.family == 'esp32c6' %}
|
||||
<script src="https://cdn.jsdelivr.net/gh/adafruit/web-firmware-installer-js@1.1.2/dist/cpinstaller.min.js" type="module"></script>
|
||||
{% endif %}
|
||||
<script src="/assets/javascript/download.js"></script>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ from pathlib import Path
|
|||
import frontmatter
|
||||
import argparse
|
||||
|
||||
INCLUDED_CHIP_FAMILIES = ("esp32s2", "esp32s3", "esp32c3", "esp32")
|
||||
INCLUDED_CHIP_FAMILIES = ("esp32s2", "esp32s3", "esp32c3", "esp32", "esp32c6")
|
||||
BOOTLOADER_URL_PREFIX = (
|
||||
"https://adafruit-circuit-python.s3.amazonaws.com/bootloaders/esp32/"
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue