From 0ac5125f3fa857cc9a8b904c02b37de0f9066bfc Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Wed, 8 Jan 2025 16:43:23 -0800 Subject: [PATCH 1/3] Make no_reset work consistently --- index.html | 2 +- js/script.js | 22 +++++++++++++++++++--- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 3ae14c8..61e4b93 100644 --- a/index.html +++ b/index.html @@ -52,7 +52,7 @@
Adafruit ESPTool
- +
Date: Thu, 9 Jan 2025 12:25:11 -0800 Subject: [PATCH 2/3] Point to local esptool-js --- js/script.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/script.js b/js/script.js index 1884f79..26f4e8a 100644 --- a/js/script.js +++ b/js/script.js @@ -1,4 +1,5 @@ -import { ESPLoader, Transport } from "https://unpkg.com/esptool-js@0.5.3/bundle.js"; +//import { ESPLoader, Transport } from "https://unpkg.com/esptool-js@0.5.3/bundle.js"; +import { ESPLoader, Transport } from "./esptool-js/bundle.js"; const baudRates = [921600, 115200, 230400, 460800]; From 98de47112cbec4bd78ca7cb6e75a78b488d328cd Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Tue, 14 Jan 2025 10:30:26 -0800 Subject: [PATCH 3/3] Point to latest esptool-js release --- js/script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/script.js b/js/script.js index 26f4e8a..e519adb 100644 --- a/js/script.js +++ b/js/script.js @@ -1,5 +1,5 @@ -//import { ESPLoader, Transport } from "https://unpkg.com/esptool-js@0.5.3/bundle.js"; -import { ESPLoader, Transport } from "./esptool-js/bundle.js"; +import { ESPLoader, Transport } from "https://unpkg.com/esptool-js@0.5.4/bundle.js"; +//import { ESPLoader, Transport } from "./esptool-js/bundle.js"; const baudRates = [921600, 115200, 230400, 460800];