esploader.patch 441 B

12345678910111213141516
  1. --- node_modules/esptool-js/ESPLoader.js 2022-07-19 09:17:05.000000000 -0700
  2. +++ node_modules/esptool-js/ESPLoader.fixed.js 2022-07-19 09:19:04.000000000 -0700
  3. @@ -1,3 +1,4 @@
  4. +import pako from 'pako';
  5. import {ESPError, TimeoutError} from "./error.js";
  6. const MAGIC_TO_CHIP = {
  7. @@ -680,7 +681,7 @@
  8. await this.run_stub();
  9. - await this.change_baud();
  10. + // await this.change_baud();
  11. return chip;
  12. }