Skip to content

Commit c25d7ee

Browse files
authored
Merge pull request #94 from DroneBridge/v2.0dev
v2.0 stable
2 parents b8c80c8 + 38661c2 commit c25d7ee

29 files changed

+19856
-842
lines changed

.github/actions/esp-idf-5_2-with-node/Dockerfile .github/actions/esp-idf-5_3-with-node_nightly/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM espressif/idf:release-v5.2
1+
FROM espressif/idf:release-v5.3
22
RUN apt update
33
RUN apt-get install -y curl
44
RUN curl -fsSL https://deb.nodesource.com/setup_18.x -o nodesource_setup.sh

.github/actions/esp-idf-5_2-with-node/action.yml .github/actions/esp-idf-5_3-with-node_nightly/action.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,13 @@ branding:
33
color: red
44
icon: wifi
55
inputs:
6-
target:
7-
description: "ESP32 variant to build for"
8-
default: "esp32"
9-
required: false
106
command:
117
description: "Command to run inside the docker container (default: builds the project)"
12-
default: "idf.py build"
8+
default: "./create_release_zip.sh"
139
required: false
1410
runs:
1511
using: 'docker'
1612
image: 'Dockerfile'
17-
env:
18-
IDF_TARGET: "${{inputs.target}}"
1913
args:
2014
- "/bin/bash"
2115
- "-c"

.github/actions/esp-idf-with-node/Dockerfile

-3
This file was deleted.

.github/actions/esp-idf-with-node/action.yml

-22
This file was deleted.

.github/workflows/esp_idf.yml

+11-29
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,7 @@ on:
88
branches: [ master ]
99

1010
jobs:
11-
build_esp32_v5_1:
12-
runs-on: ubuntu-latest
13-
strategy:
14-
matrix:
15-
target: ["esp32", "esp32s2", "esp32s3", "esp32c3"]
16-
fail-fast: false
17-
steps:
18-
- name: Checkout repo
19-
uses: actions/checkout@v4
20-
with:
21-
ref: ${{ github.ref }}
22-
submodules: 'recursive'
23-
- name: ESP-IDF v5.1 build
24-
uses: ./.github/actions/esp-idf-with-node
25-
with:
26-
target: "${{ matrix.target }}"
27-
command: "idf.py set-target ${{matrix.target}} build"
28-
build_esp32_v5_2:
11+
build_idf_v5_3_generic:
2912
runs-on: ubuntu-latest
3013
strategy:
3114
matrix:
@@ -37,25 +20,24 @@ jobs:
3720
with:
3821
ref: ${{ github.ref }}
3922
submodules: 'recursive'
40-
- name: ESP-IDF v5.2 build
41-
uses: ./.github/actions/esp-idf-5_2-with-node
23+
- name: Generic ESP-IDF v5.3 target build
24+
uses: ./.github/actions/esp-idf-5_3-with-node
4225
with:
4326
target: "${{ matrix.target }}"
4427
command: "idf.py set-target ${{matrix.target}} build"
45-
build_esp32_v5_3:
28+
build_idf_v5_3_nightly_release:
4629
runs-on: ubuntu-latest
47-
strategy:
48-
matrix:
49-
target: ["esp32", "esp32s2", "esp32s3", "esp32c3", "esp32c6"]
50-
fail-fast: false
5130
steps:
5231
- name: Checkout repo
5332
uses: actions/checkout@v4
5433
with:
5534
ref: ${{ github.ref }}
5635
submodules: 'recursive'
57-
- name: ESP-IDF v5.3 build
58-
uses: ./.github/actions/esp-idf-5_3-with-node
36+
- name: Release config build ESP-IDF v5.3
37+
uses: ./.github/actions/esp-idf-5_3-with-node_nightly
5938
with:
60-
target: "${{ matrix.target }}"
61-
command: "idf.py set-target ${{matrix.target}} build"
39+
command: "bash ./create_release_zip.sh"
40+
- uses: actions/upload-artifact@v4
41+
with:
42+
name: DroneBridge_ESP32_nightly
43+
path: DroneBridge_ESP32_nightly

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ add_custom_command (
2222
POST_BUILD
2323
COMMAND cmake -E remove_directory "${CMAKE_SOURCE_DIR}/frontend/build"
2424
)
25-
set(PROJECT_VER "2.0RC3")
25+
set(PROJECT_VER "2.0 stable")
2626
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
2727
project(db_esp32)

create_release_zip.ps1

+36-65
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,53 @@
1-
# Execute in an esp-idf enabled PowerShell
1+
# Execute in an esp-idf enabled PowerShell
22
# This script will create a combined zip file containing binaries for all supported esp32 boards
33

4-
$release_foldername = "DroneBridge_ESP32_v2.0RC3"
5-
$release_name_zip = "DroneBridge_ESP32_v2.0RC3.zip"
4+
$release_foldername = "DroneBridge_ESP32_nightly"
5+
$release_name_zip = "DroneBridge_ESP32_nightly.zip"
66

77
mkdir $release_foldername
88
mkdir build
99
cp .\flashing_instructions.txt $release_foldername
1010

11-
rm -Recurse .\build
12-
idf.py fullclean
13-
cp .\sdkconfig_esp32 .\sdkconfig
14-
idf.py build
15-
mkdir $release_foldername\esp32
16-
cp .\build\flash_args $release_foldername\esp32\flash_args.txt
17-
cp .\build\db_esp32.bin $release_foldername\esp32
18-
cp .\build\bootloader\bootloader.bin $release_foldername\esp32
19-
cp .\build\www.bin $release_foldername\esp32
20-
cp .\build\partition_table\partition-table.bin $release_foldername\esp32
11+
function BuildAndCopy($config, $folder) {
12+
rm -Recurse -Force .\build
13+
idf.py fullclean
14+
cp .\$config .\sdkconfig
15+
idf.py build
16+
mkdir $release_foldername\$folder
17+
cp .\build\flash_args $release_foldername\$folder\flash_args.txt
18+
cp .\build\db_esp32.bin $release_foldername\$folder
19+
cp .\build\bootloader\bootloader.bin $release_foldername\$folder
20+
cp .\build\www.bin $release_foldername\$folder
21+
cp .\build\partition_table\partition-table.bin $release_foldername\$folder
22+
}
2123

22-
rm -Recurse .\build
23-
idf.py fullclean
24-
cp .\sdkconfig_s2 .\sdkconfig
25-
idf.py build
26-
mkdir $release_foldername\esp32s2
27-
cp .\build\flash_args $release_foldername\esp32s2\flash_args.txt
28-
cp .\build\db_esp32.bin $release_foldername\esp32s2
29-
cp .\build\bootloader\bootloader.bin $release_foldername\esp32s2
30-
cp .\build\www.bin $release_foldername\esp32s2
31-
cp .\build\partition_table\partition-table.bin $release_foldername\esp32s2
24+
# ESP32
25+
BuildAndCopy "sdkconfig_esp32" "esp32"
26+
# BuildAndCopy "sdkconfig_esp32_noUARTConsole" "esp32_noUARTConsole" # Build issue - ESP-NOW wants a console for debugging
3227

33-
rm -Recurse .\build
34-
idf.py fullclean
35-
cp .\sdkconfig_s3 .\sdkconfig
36-
idf.py build
37-
mkdir $release_foldername\esp32s3
38-
cp .\build\flash_args $release_foldername\esp32s3\flash_args.txt
39-
cp .\build\db_esp32.bin $release_foldername\esp32s3
40-
cp .\build\bootloader\bootloader.bin $release_foldername\esp32s3
41-
cp .\build\www.bin $release_foldername\esp32s3
42-
cp .\build\partition_table\partition-table.bin $release_foldername\esp32s3
28+
# ESP32-S2
29+
BuildAndCopy "sdkconfig_s2" "esp32s2"
30+
BuildAndCopy "sdkconfig_s2_noUARTConsole" "esp32s2_noUARTConsole"
4331

44-
rm -Recurse .\build
45-
idf.py fullclean
46-
cp .\sdkconfig_c3 .\sdkconfig
47-
idf.py build
48-
mkdir $release_foldername\esp32c3
49-
cp .\build\flash_args $release_foldername\esp32c3\flash_args.txt
50-
cp .\build\db_esp32.bin $release_foldername\esp32c3
51-
cp .\build\bootloader\bootloader.bin $release_foldername\esp32c3
52-
cp .\build\www.bin $release_foldername\esp32c3
53-
cp .\build\partition_table\partition-table.bin $release_foldername\esp32c3
32+
# ESP32-S3
33+
BuildAndCopy "sdkconfig_s3" "esp32s3"
34+
BuildAndCopy "sdkconfig_s3_noUARTConsole" "esp32s3_noUARTConsole"
35+
BuildAndCopy "sdkconfig_s3_serial_via_JTAG" "esp32s3_USBSerial"
5436

55-
rm -Recurse .\build
56-
idf.py fullclean
57-
cp .\sdkconfig_c3_serial_via_JTAG .\sdkconfig
58-
idf.py build
59-
mkdir $release_foldername\esp32c3_USBSerial
60-
cp .\build\flash_args $release_foldername\esp32c3_USBSerial\flash_args.txt
61-
cp .\build\db_esp32.bin $release_foldername\esp32c3_USBSerial
62-
cp .\build\bootloader\bootloader.bin $release_foldername\esp32c3_USBSerial
63-
cp .\build\www.bin $release_foldername\esp32c3_USBSerial
64-
cp .\build\partition_table\partition-table.bin $release_foldername\esp32c3_USBSerial
37+
# ESP32-C3
38+
BuildAndCopy "sdkconfig_c3" "esp32c3"
39+
BuildAndCopy "sdkconfig_c3_official" "esp32c3_official"
40+
BuildAndCopy "sdkconfig_c3_serial_via_JTAG" "esp32c3_USBSerial"
41+
BuildAndCopy "sdkconfig_c3_noUARTConsole" "esp32c3_noUARTConsole"
6542

66-
rm -Recurse .\build
67-
idf.py fullclean
68-
cp .\sdkconfig_c6 .\sdkconfig
69-
idf.py build
70-
mkdir $release_foldername\esp32c6
71-
cp .\build\flash_args $release_foldername\esp32c6\flash_args.txt
72-
cp .\build\db_esp32.bin $release_foldername\esp32c6
73-
cp .\build\bootloader\bootloader.bin $release_foldername\esp32c6
74-
cp .\build\www.bin $release_foldername\esp32c6
75-
cp .\build\partition_table\partition-table.bin $release_foldername\esp32c6
43+
# ESP32-C6
44+
BuildAndCopy "sdkconfig_c6" "esp32c6"
45+
BuildAndCopy "sdkconfig_c6_serial_via_JTAG" "esp32c6_USBSerial"
46+
BuildAndCopy "sdkconfig_c6_noUARTConsole" "esp32c6_noUARTConsole"
7647

7748
if (Test-Path $release_name_zip) {
78-
Remove-Item $release_name_zip -verbose
49+
Remove-Item $release_name_zip -Verbose
7950
}
8051
Compress-Archive -Path $release_foldername -DestinationPath $release_name_zip
8152

82-
rm -R $release_foldername
53+
rm -Recurse -Force $release_foldername

create_release_zip.sh

+58-77
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,62 @@
11
#!/bin/bash
22

3-
release_foldername="DroneBridge_ESP32_vXX"
4-
release_name_zip="DroneBridge_ESP32_vXX.zip"
5-
6-
mkdir "$release_foldername"
7-
mkdir build
8-
cp flashing_instructions.txt "$release_foldername"
9-
10-
rm -rf build
11-
idf.py fullclean
12-
cp sdkconfig_esp32 sdkconfig
13-
idf.py build
14-
mkdir "$release_foldername/esp32"
15-
cp build/flash_args "$release_foldername/esp32/flash_args.txt"
16-
cp build/db_esp32.bin "$release_foldername/esp32"
17-
cp build/bootloader/bootloader.bin "$release_foldername/esp32"
18-
cp build/www.bin "$release_foldername/esp32"
19-
cp build/partition_table/partition-table.bin "$release_foldername/esp32"
20-
21-
rm -rf build
22-
idf.py fullclean
23-
cp sdkconfig_s2 sdkconfig
24-
idf.py build
25-
mkdir "$release_foldername/esp32s2"
26-
cp build/flash_args "$release_foldername/esp32s2/flash_args.txt"
27-
cp build/db_esp32.bin "$release_foldername/esp32s2"
28-
cp build/bootloader/bootloader.bin "$release_foldername/esp32s2"
29-
cp build/www.bin "$release_foldername/esp32s2"
30-
cp build/partition_table/partition-table.bin "$release_foldername/esp32s2"
31-
32-
rm -rf build
33-
idf.py fullclean
34-
cp sdkconfig_s3 sdkconfig
35-
idf.py build
36-
mkdir "$release_foldername/esp32s3"
37-
cp build/flash_args "$release_foldername/esp32s3/flash_args.txt"
38-
cp build/db_esp32.bin "$release_foldername/esp32s3"
39-
cp build/bootloader/bootloader.bin "$release_foldername/esp32s3"
40-
cp build/www.bin "$release_foldername/esp32s3"
41-
cp build/partition_table/partition-table.bin "$release_foldername/esp32s3"
42-
43-
rm -rf build
44-
idf.py fullclean
45-
cp sdkconfig_c3 sdkconfig
46-
idf.py build
47-
mkdir "$release_foldername/esp32c3"
48-
cp build/flash_args "$release_foldername/esp32c3/flash_args.txt"
49-
cp build/db_esp32.bin "$release_foldername/esp32c3"
50-
cp build/bootloader/bootloader.bin "$release_foldername/esp32c3"
51-
cp build/www.bin "$release_foldername/esp32c3"
52-
cp build/partition_table/partition-table.bin "$release_foldername/esp32c3"
53-
54-
rm -rf build
55-
idf.py fullclean
56-
cp sdkconfig_c3_serial_via_JTAG sdkconfig
57-
idf.py build
58-
mkdir "$release_foldername/esp32c3_USBSerial"
59-
cp build/flash_args "$release_foldername/esp32c3_USBSerial/flash_args.txt"
60-
cp build/db_esp32.bin "$release_foldername/esp32c3_USBSerial"
61-
cp build/bootloader/bootloader.bin "$release_foldername/esp32c3_USBSerial"
62-
cp build/www.bin "$release_foldername/esp32c3_USBSerial"
63-
cp build/partition_table/partition-table.bin "$release_foldername/esp32c3_USBSerial"
64-
65-
rm -rf build
66-
idf.py fullclean
67-
cp sdkconfig_c6 sdkconfig
68-
idf.py build
69-
mkdir "$release_foldername/esp32c6"
70-
cp build/flash_args "$release_foldername/esp32c6/flash_args.txt"
71-
cp build/db_esp32.bin "$release_foldername/esp32c6"
72-
cp build/bootloader/bootloader.bin "$release_foldername/esp32c6"
73-
cp build/www.bin "$release_foldername/esp32c6"
74-
cp build/partition_table/partition-table.bin "$release_foldername/esp32c6"
75-
76-
if [ -f "$release_name_zip" ]; then
77-
rm "$release_name_zip"
3+
# Execute in an esp-idf enabled shell
4+
# This script will create a combined zip file containing binaries for all supported esp32 boards
5+
6+
release_foldername="DroneBridge_ESP32_nightly"
7+
release_name_zip="DroneBridge_ESP32_nightly.zip"
8+
9+
mkdir -p $release_foldername
10+
mkdir -p build
11+
cp ./flashing_instructions.txt $release_foldername
12+
13+
# Function to build and copy binaries for different configurations
14+
build_and_copy() {
15+
config=$1
16+
folder=$2
17+
18+
rm -rf ./build
19+
cp $config sdkconfig
20+
idf.py fullclean
21+
cp $config sdkconfig
22+
idf.py build
23+
mkdir -p $release_foldername/$folder
24+
cp ./build/flash_args $release_foldername/$folder/flash_args.txt
25+
cp ./build/db_esp32.bin $release_foldername/$folder
26+
cp ./build/bootloader/bootloader.bin $release_foldername/$folder
27+
cp ./build/www.bin $release_foldername/$folder
28+
cp ./build/partition_table/partition-table.bin $release_foldername/$folder
29+
}
30+
31+
# ESP32
32+
build_and_copy sdkconfig_esp32 esp32
33+
# build_and_copy sdkconfig_esp32_noUARTConsole esp32_noUARTConsole # Build issue - ESP-NOW wants a console for debugging
34+
35+
# ESP32-S2
36+
build_and_copy sdkconfig_s2 esp32s2
37+
build_and_copy sdkconfig_s2_noUARTConsole esp32s2_noUARTConsole
38+
39+
# ESP32-S3
40+
build_and_copy sdkconfig_s3 esp32s3
41+
build_and_copy sdkconfig_s3_noUARTConsole esp32s3_noUARTConsole
42+
build_and_copy sdkconfig_s3_serial_via_JTAG esp32s3_USBSerial
43+
44+
# ESP32-C3
45+
build_and_copy sdkconfig_c3 esp32c3
46+
build_and_copy sdkconfig_c3_official esp32c3_official
47+
build_and_copy sdkconfig_c3_serial_via_JTAG esp32c3_USBSerial
48+
build_and_copy sdkconfig_c3_noUARTConsole esp32c3_noUARTConsole
49+
50+
# ESP32-C6
51+
build_and_copy sdkconfig_c6 esp32c6
52+
build_and_copy sdkconfig_c6_serial_via_JTAG esp32c6_USBSerial
53+
build_and_copy sdkconfig_c6_noUARTConsole esp32c6_noUARTConsole
54+
55+
# Create the zip file
56+
if [ -f $release_name_zip ]; then
57+
rm -v $release_name_zip
7858
fi
79-
zip -r "$release_name_zip" "$release_foldername"
59+
zip -r $release_name_zip $release_foldername
8060

81-
rm -rf "$release_foldername"
61+
# Clean up
62+
# rm -rf $release_foldername

frontend/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,14 @@ <h3>Serial</h3>
132132
<label for="baud">UART baud</label>
133133
<select name="baud" id="baud" form="settings_form">
134134
<option value="5000000">5000000</option>
135+
<option value="1500000">3000000</option>
136+
<option value="1500000">2000000</option>
135137
<option value="1500000">1500000</option>
136138
<option value="1000000">1000000</option>
137139
<option value="500000">500000</option>
138140
<option value="921600">921600</option>
139141
<option value="576000">576000</option>
142+
<option value="460800">500800</option>
140143
<option value="460800">460800</option>
141144
<option value="230400">230400</option>
142145
<option value="115200">115200</option>

0 commit comments

Comments
 (0)