Skip to content

Commit

Permalink
added v2.0RC4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
seeul8er committed Oct 25, 2024
1 parent 6d451cd commit ec85cf3
Show file tree
Hide file tree
Showing 31 changed files with 40 additions and 1 deletion.
Binary file added db_releases/2_0RC4/esp32/bootloader.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32/db_esp32.bin
Binary file not shown.
5 changes: 5 additions & 0 deletions db_releases/2_0RC4/esp32/flash_args.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
--flash_mode dio --flash_freq 40m --flash_size 2MB
0x1000 bootloader/bootloader.bin
0x10000 db_esp32.bin
0x8000 partition_table/partition-table.bin
0x190000 www.bin
Binary file added db_releases/2_0RC4/esp32/partition-table.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32/www.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32c3/bootloader.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32c3/db_esp32.bin
Binary file not shown.
5 changes: 5 additions & 0 deletions db_releases/2_0RC4/esp32c3/flash_args.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
--flash_mode dio --flash_freq 80m --flash_size 2MB
0x0 bootloader/bootloader.bin
0x10000 db_esp32.bin
0x8000 partition_table/partition-table.bin
0x190000 www.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32c3/www.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 5 additions & 0 deletions db_releases/2_0RC4/esp32c3_USBSerial/flash_args.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
--flash_mode dio --flash_freq 80m --flash_size 2MB
0x0 bootloader/bootloader.bin
0x10000 db_esp32.bin
0x8000 partition_table/partition-table.bin
0x190000 www.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32c3_USBSerial/www.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32c6/bootloader.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32c6/db_esp32.bin
Binary file not shown.
5 changes: 5 additions & 0 deletions db_releases/2_0RC4/esp32c6/flash_args.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
--flash_mode dio --flash_freq 80m --flash_size 2MB
0x0 bootloader/bootloader.bin
0x10000 db_esp32.bin
0x8000 partition_table/partition-table.bin
0x190000 www.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32c6/www.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32s2/bootloader.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32s2/db_esp32.bin
Binary file not shown.
5 changes: 5 additions & 0 deletions db_releases/2_0RC4/esp32s2/flash_args.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
--flash_mode dio --flash_freq 80m --flash_size 2MB
0x1000 bootloader/bootloader.bin
0x10000 db_esp32.bin
0x8000 partition_table/partition-table.bin
0x190000 www.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32s2/www.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32s3/bootloader.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32s3/db_esp32.bin
Binary file not shown.
5 changes: 5 additions & 0 deletions db_releases/2_0RC4/esp32s3/flash_args.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
--flash_mode dio --flash_freq 80m --flash_size 2MB
0x0 bootloader/bootloader.bin
0x10000 db_esp32.bin
0x8000 partition_table/partition-table.bin
0x190000 www.bin
Binary file not shown.
Binary file added db_releases/2_0RC4/esp32s3/www.bin
Binary file not shown.
11 changes: 10 additions & 1 deletion dronebridge_esp32_flasher.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,17 @@ let t2RC3_esp32s3 = new DBTarget("ESP32-S3", "ESP32-S3", "esp32s3/", ["bootloade
let release_20RC3 = new DBRelease("v2.0RC3 (pre-release)", "./db_releases/2_0RC3/",
[t2RC3_esp32, t2RC3_espc3, t2RC3_espc3_usbserial, t2RC3_espc6, t2RC3_esps2, t2RC3_esp32s3]);

let t2RC4_esp32 = new DBTarget("ESP32", "ESP32", "esp32/", ["bootloader.bin", "partition-table.bin", "db_esp32.bin", "www.bin"], [0x1000, 0x8000, 0x10000, 0x190000], "DIO", "40MHz");
let t2RC4_espc3 = new DBTarget("ESP32-C3", "ESP32-C3", "esp32c3/", ["bootloader.bin", "partition-table.bin", "db_esp32.bin", "www.bin"], [0x0, 0x8000, 0x10000, 0x190000], "DIO", "80MHz");
let t2RC4_espc3_usbserial = new DBTarget("ESP32-C3", "ESP32-C3 (USBSerial)", "esp32c3_USBSerial/", ["bootloader.bin", "partition-table.bin", "db_esp32.bin", "www.bin"], [0x0, 0x8000, 0x10000, 0x190000], "DIO", "80MHz");
let t2RC4_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 t2RC4_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 t2RC4_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_20RC4 = new DBRelease("v2.0RC4 (pre-release)", "./db_releases/2_0RC4/",
[t2RC4_esp32, t2RC4_espc3, t2RC4_espc3_usbserial, t2RC4_espc6, t2RC4_esps2, t2RC4_esp32s3]);

// overall array containing all releases with flashing instructions
let db_releases = [release_20RC3, release_20RC2, release_15];
let db_releases = [release_20RC4, release_20RC3, release_20RC2, release_15];


let device = null;
Expand Down

0 comments on commit ec85cf3

Please sign in to comment.