Github Action: Updated dist files

pull/306/head
dhalbert 3 months ago committed by github-actions[bot]
parent 01bf969941
commit 82d6083046

13
dist/esp_loader.js vendored

@ -93,15 +93,12 @@ export class ESPLoader extends EventTarget {
await this.port.setSignals({ dataTerminalReady: state });
}
async hardReset(bootloader = false) {
this.logger.log("Try hard reset.");
// Check for noReset toggle
// Passthrough mode defaults to "off"
// Passthrough checkbox is "on" will prevent a controller reset
const noResetCheckbox = document.getElementById("noReset");
const noResetEnabled = noResetCheckbox
? noResetCheckbox.checked
: false;
if (noResetEnabled) {
this.logger.log("No reset requested; skipping hard reset.");
return; // Skip reset if noReset is enabled
const noReset = noResetCheckbox ? noResetCheckbox.checked : false;
if (noReset) {
return; // Skip reset if noReset is true
}
if (bootloader) {
// enter flash mode

2
dist/web/index.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save