Skip to content

Commit

Permalink
another try to fix the path. At least the bundle is loading now
Browse files Browse the repository at this point in the history
  • Loading branch information
seeul8er committed Aug 17, 2024
1 parent 1f5f28e commit 5f5b658
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dronebridge_esp32_flasher.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ let t_esp32 = new DBTarget("ESP32", "ESP32", "esp32/", ["bootloader.bin", "parti
let t_espc3 = new DBTarget("ESP32-C3", "ESP32-C3", "esp32c3/", ["bootloader.bin", "partition-table.bin", "db_esp32.bin", "www.bin"], [0x0, 0x8000, 0x10000, 0x110000], "DIO", "80MHz");
let t_esps2 = new DBTarget("ESP32-S2", "ESP32-S2", "esp32s2/", ["bootloader.bin", "partition-table.bin", "db_esp32.bin", "www.bin"], [0x1000, 0x8000, 0x10000, 0x110000], "DIO", "80MHz");
let t_esp32s3 = new DBTarget("ESP32-S3", "ESP32-S3", "esp32s3/", ["bootloader.bin", "partition-table.bin", "db_esp32.bin", "www.bin"], [0x0, 0x8000, 0x10000, 0x110000], "DIO", "80MHz");
let release_15 = new DBRelease("v1.5 (stable)", "/db_releases/1_5/",
let release_15 = new DBRelease("v1.5 (stable)", "./db_releases/1_5/",
[t_esp32, t_espc3, t_esps2, t_esp32s3]);

let t2RC2_esp32 = new DBTarget("ESP32", "ESP32", "esp32/", ["bootloader.bin", "partition-table.bin", "db_esp32.bin", "www.bin"], [0x1000, 0x8000, 0x10000, 0x190000], "DIO", "40MHz");
Expand All @@ -71,7 +71,7 @@ let t2RC2_espc3_usbserial = new DBTarget("ESP32-C3", "ESP32-C3 (USBSerial)", "es
let t2RC2_espc6 = new DBTarget("ESP32-C6", "ESP32-C6", "esp32c6/", ["bootloader.bin", "partition-table.bin", "db_esp32.bin", "www.bin"], [0x0, 0x8000, 0x10000, 0x190000], "DIO", "80MHz");
let t2RC2_esps2 = new DBTarget("ESP32-S2", "ESP32-S2", "esp32s2/", ["bootloader.bin", "partition-table.bin", "db_esp32.bin", "www.bin"], [0x1000, 0x8000, 0x10000, 0x190000], "DIO", "80MHz");
let t2RC2_esp32s3 = new DBTarget("ESP32-S3", "ESP32-S3", "esp32s3/", ["bootloader.bin", "partition-table.bin", "db_esp32.bin", "www.bin"], [0x0, 0x8000, 0x10000, 0x190000], "DIO", "80MHz");
let release_20RC2 = new DBRelease("v2.0RC2 (pre-release)", "/db_releases/2_0RC2/",
let release_20RC2 = new DBRelease("v2.0RC2 (pre-release)", "./db_releases/2_0RC2/",
[t2RC2_esp32, t2RC2_espc3, t2RC2_espc3_usbserial, t2RC2_espc6, t2RC2_esps2, t2RC2_esp32s3]);

// overall array containing all releases with flashing instructions
Expand Down

0 comments on commit 5f5b658

Please sign in to comment.