diff --git a/adabot b/adabot index 2415fa6b5..a295390bb 160000 --- a/adabot +++ b/adabot @@ -1 +1 @@ -Subproject commit 2415fa6b5c8e5bbb9a45d6ee4833d03a70bc25ae +Subproject commit a295390bb7c1a694cf64da74a5fe99d7dc51e334 diff --git a/bin/adafruit_feather_esp32s2/en_US/adafruit-circuitpython-adafruit_feather_esp32s2-en_US-8.0.2.bin b/bin/adafruit_feather_esp32s2/en_US/adafruit-circuitpython-adafruit_feather_esp32s2-en_US-8.0.2.bin new file mode 100644 index 000000000..32778e7ee Binary files /dev/null and b/bin/adafruit_feather_esp32s2/en_US/adafruit-circuitpython-adafruit_feather_esp32s2-en_US-8.0.2.bin differ diff --git a/bin/adafruit_feather_esp32s2/en_US/adafruit-circuitpython-adafruit_feather_esp32s2-en_US-8.0.2.uf2 b/bin/adafruit_feather_esp32s2/en_US/adafruit-circuitpython-adafruit_feather_esp32s2-en_US-8.0.2.uf2 new file mode 100644 index 000000000..87a549a75 Binary files /dev/null and b/bin/adafruit_feather_esp32s2/en_US/adafruit-circuitpython-adafruit_feather_esp32s2-en_US-8.0.2.uf2 differ diff --git a/bin/adafruit_feather_esp32s3_tft/en_US/adafruit-circuitpython-adafruit_feather_esp32s3_tft-en_US-8.0.2.bin b/bin/adafruit_feather_esp32s3_tft/en_US/adafruit-circuitpython-adafruit_feather_esp32s3_tft-en_US-8.0.2.bin new file mode 100644 index 000000000..093ee0dae Binary files /dev/null and b/bin/adafruit_feather_esp32s3_tft/en_US/adafruit-circuitpython-adafruit_feather_esp32s3_tft-en_US-8.0.2.bin differ diff --git a/bin/adafruit_feather_esp32s3_tft/en_US/adafruit-circuitpython-adafruit_feather_esp32s3_tft-en_US-8.0.2.uf2 b/bin/adafruit_feather_esp32s3_tft/en_US/adafruit-circuitpython-adafruit_feather_esp32s3_tft-en_US-8.0.2.uf2 new file mode 100644 index 000000000..0c1056f1e Binary files /dev/null and b/bin/adafruit_feather_esp32s3_tft/en_US/adafruit-circuitpython-adafruit_feather_esp32s3_tft-en_US-8.0.2.uf2 differ diff --git a/bin/adafruit_feather_huzzah32/en_US/adafruit-circuitpython-adafruit_feather_huzzah32-en_US-8.0.2.bin b/bin/adafruit_feather_huzzah32/en_US/adafruit-circuitpython-adafruit_feather_huzzah32-en_US-8.0.2.bin new file mode 100644 index 000000000..b416aa6fb Binary files /dev/null and b/bin/adafruit_feather_huzzah32/en_US/adafruit-circuitpython-adafruit_feather_huzzah32-en_US-8.0.2.bin differ diff --git a/bin/adafruit_qtpy_esp32c3/en_US/adafruit-circuitpython-adafruit_qtpy_esp32c3-en_US-8.0.2.bin b/bin/adafruit_qtpy_esp32c3/en_US/adafruit-circuitpython-adafruit_qtpy_esp32c3-en_US-8.0.2.bin new file mode 100644 index 000000000..68b9af3f9 Binary files /dev/null and b/bin/adafruit_qtpy_esp32c3/en_US/adafruit-circuitpython-adafruit_qtpy_esp32c3-en_US-8.0.2.bin differ diff --git a/bin/bootloaders/tinyuf2-adafruit_feather_esp32s3_tft-0.12.3.zip b/bin/bootloaders/tinyuf2-adafruit_feather_esp32s3_tft-0.12.3.zip new file mode 100644 index 000000000..a6e9fa2c0 Binary files /dev/null and b/bin/bootloaders/tinyuf2-adafruit_feather_esp32s3_tft-0.12.3.zip differ diff --git a/bin/bootloaders/tinyuf2-adafruit_funhouse_esp32s2-0.12.3.zip b/bin/bootloaders/tinyuf2-adafruit_funhouse_esp32s2-0.12.3.zip new file mode 100644 index 000000000..3152eb3c9 Binary files /dev/null and b/bin/bootloaders/tinyuf2-adafruit_funhouse_esp32s2-0.12.3.zip differ diff --git a/bin/bootloaders/tinyuf2-espressif_saola_1_wroom-0.12.3.zip b/bin/bootloaders/tinyuf2-espressif_saola_1_wroom-0.12.3.zip new file mode 100644 index 000000000..3c41d82df Binary files /dev/null and b/bin/bootloaders/tinyuf2-espressif_saola_1_wroom-0.12.3.zip differ diff --git a/cpinstaller/src/cpinstaller.js b/cpinstaller/src/cpinstaller.js index 425077af8..5527e5d69 100644 --- a/cpinstaller/src/cpinstaller.js +++ b/cpinstaller/src/cpinstaller.js @@ -436,13 +436,13 @@ export class CPInstallButton extends InstallButton { } try { - this.updateEspConnected(this.connectionStates.CONNECTING); + this.updateUIConnected(this.connectionStates.CONNECTING); await esploader.initialize(); - this.updateEspConnected(this.connectionStates.CONNECTED); + this.updateUIConnected(this.connectionStates.CONNECTED); } catch (err) { await esploader.disconnect(); // Disconnection before complete - this.updateEspConnected(this.connectionStates.DISCONNECTED); + this.updateUIConnected(this.connectionStates.DISCONNECTED); this.errorMsg("Unable to connect to the board. Make sure it is in bootloader mode by holding the boot0 button when powering on and try again.") return; } @@ -468,7 +468,7 @@ export class CPInstallButton extends InstallButton { } catch (err) { await esploader.disconnect(); // Disconnection before complete - this.updateEspConnected(this.connectionStates.DISCONNECTED); + this.updateUIConnected(this.connectionStates.DISCONNECTED); this.errorMsg("Oops, we lost connection to your board before completing the install. Please check your USB connection and click Connect again. Refresh the browser if it becomes unresponsive.") } } @@ -536,7 +536,7 @@ export class CPInstallButton extends InstallButton { if (this.espStub) { this.espStub.removeEventListener("disconnect", this.espDisconnect.bind(this)); await this.espStub.disconnect(); - this.updateEspConnected(this.connectionStates.DISCONNECTED); + this.updateUIConnected(this.connectionStates.DISCONNECTED); this.espStub = null; } }