esp32tool 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apple-touch-icon.png +0 -0
- package/css/style.css +463 -0
- package/dist/cli.js +2 -2
- package/dist/esp_loader.js +29 -17
- package/dist/node-usb-adapter.js +13 -13
- package/dist/util/console-color.js +1 -0
- package/dist/util.d.ts +5 -0
- package/dist/util.js +15 -0
- package/dist/web/index.js +1 -1
- package/eslint.config.js +9 -0
- package/icons/icon-128.png +0 -0
- package/icons/icon-144.png +0 -0
- package/icons/icon-152.png +0 -0
- package/icons/icon-192.png +0 -0
- package/icons/icon-384.png +0 -0
- package/icons/icon-512.png +0 -0
- package/icons/icon-72.png +0 -0
- package/icons/icon-96.png +0 -0
- package/index.html +5 -0
- package/js/hex-editor.js +833 -0
- package/js/modules/esptool.js +1 -1
- package/js/script.js +164 -24
- package/package.json +7 -7
- package/screenshots/desktop.png +0 -0
- package/screenshots/mobile.png +0 -0
- package/src/cli.ts +2 -2
- package/src/const.ts +0 -2
- package/src/esp_loader.ts +30 -17
- package/src/node-usb-adapter.ts +13 -13
- package/src/util/console-color.ts +1 -0
- package/src/util.ts +20 -0
- package/sw.js +2 -1
package/eslint.config.js
CHANGED
|
@@ -14,6 +14,15 @@ export default tseslint.config(
|
|
|
14
14
|
rules: {
|
|
15
15
|
"no-console": "warn",
|
|
16
16
|
"prettier/prettier": "error",
|
|
17
|
+
"@typescript-eslint/no-unused-vars": [
|
|
18
|
+
"error",
|
|
19
|
+
{
|
|
20
|
+
argsIgnorePattern: "^_",
|
|
21
|
+
varsIgnorePattern: "^_",
|
|
22
|
+
caughtErrorsIgnorePattern: "^_",
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
17
26
|
},
|
|
18
27
|
},
|
|
19
28
|
{
|
package/icons/icon-128.png
CHANGED
|
Binary file
|
package/icons/icon-144.png
CHANGED
|
Binary file
|
package/icons/icon-152.png
CHANGED
|
Binary file
|
package/icons/icon-192.png
CHANGED
|
Binary file
|
package/icons/icon-384.png
CHANGED
|
Binary file
|
package/icons/icon-512.png
CHANGED
|
Binary file
|
package/icons/icon-72.png
CHANGED
|
Binary file
|
package/icons/icon-96.png
CHANGED
|
Binary file
|
package/index.html
CHANGED
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
);
|
|
48
48
|
</script>
|
|
49
49
|
<script src="js/script.js" type="module" defer></script>
|
|
50
|
+
<script src="js/hex-editor.js" type="module" defer></script>
|
|
50
51
|
|
|
51
52
|
<script>
|
|
52
53
|
// Service Worker for PWA functionality
|
|
@@ -191,6 +192,7 @@
|
|
|
191
192
|
</div>
|
|
192
193
|
<div id="app">
|
|
193
194
|
<div id="console-container" class="console-container hidden"></div>
|
|
195
|
+
<div id="hexeditor-container" class="hexeditor-container hidden"></div>
|
|
194
196
|
<div id="commands">
|
|
195
197
|
<div class="upload">
|
|
196
198
|
<label
|
|
@@ -397,6 +399,9 @@
|
|
|
397
399
|
<button id="butReadFlash" type="button" disabled="disabled">
|
|
398
400
|
Read Flash
|
|
399
401
|
</button>
|
|
402
|
+
<button id="butHexEditor" type="button" disabled="disabled">
|
|
403
|
+
Hex Editor
|
|
404
|
+
</button>
|
|
400
405
|
</div>
|
|
401
406
|
</div>
|
|
402
407
|
</div>
|