Skip to content

Commit 221571b

Browse files
committed
HA_MQTT binaries
1 parent 610f033 commit 221571b

18 files changed

+23
-12
lines changed

build_all_targets.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ declare -A TARGET_BUILD_DIR=(
3636
["wt32_eth01"]="build_eth"
3737
)
3838

39+
# Custom sdkconfig file path (empty = default "sdkconfig")
40+
declare -A TARGET_SDKCONFIG_FILE=(
41+
["wt32_eth01"]="sdkconfig.eth"
42+
)
43+
3944
# Colors for output
4045
RED='\033[0;31m'
4146
GREEN='\033[0;32m'
@@ -67,6 +72,7 @@ build_target() {
6772
local chip="${TARGET_CHIP[$target]}"
6873
local sdkconfig="${TARGET_SDKCONFIG[$target]}"
6974
local build_dir="${TARGET_BUILD_DIR[$target]}"
75+
local sdkconfig_file="${TARGET_SDKCONFIG_FILE[$target]}"
7076
local build_args=()
7177

7278
print_status "Building for $description ($target)..."
@@ -76,6 +82,11 @@ build_target() {
7682
build_args+=("-B" "$build_dir")
7783
fi
7884

85+
# Use custom sdkconfig file if specified (avoids conflicts with shared sdkconfig)
86+
if [ -n "$sdkconfig_file" ]; then
87+
build_args+=("-D" "SDKCONFIG=$sdkconfig_file")
88+
fi
89+
7990
# Use custom sdkconfig defaults if specified
8091
if [ -n "$sdkconfig" ]; then
8192
build_args+=("-D" "SDKCONFIG_DEFAULTS=$sdkconfig")

firmware_esp32/bootloader.bin

0 Bytes
Binary file not shown.

firmware_esp32/build_info.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ESP32 NAT Router Build Information
22
=================================
33
Target: ESP32 (Original) (esp32)
4-
Build Time: 2026-03-04 15:37:48
5-
Git Hash: 68fe5cb
4+
Build Time: 2026-03-06 18:44:12
5+
Git Hash: 610f033
66
Binary Files: 3
77
Build Directory: build
48.8 KB
Binary file not shown.

firmware_esp32c3/bootloader.bin

0 Bytes
Binary file not shown.

firmware_esp32c3/build_info.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ESP32 NAT Router Build Information
22
=================================
33
Target: ESP32-C3 (esp32c3)
4-
Build Time: 2026-03-04 15:47:47
5-
Git Hash: 68fe5cb
4+
Build Time: 2026-03-06 18:56:14
5+
Git Hash: 610f033
66
Binary Files: 3
77
Build Directory: build
59 KB
Binary file not shown.

firmware_esp32c6/bootloader.bin

0 Bytes
Binary file not shown.

firmware_esp32c6/build_info.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ESP32 NAT Router Build Information
22
=================================
33
Target: ESP32-C6 (esp32c6)
4-
Build Time: 2026-03-04 15:45:22
5-
Git Hash: 68fe5cb
4+
Build Time: 2026-03-06 18:53:16
5+
Git Hash: 610f033
66
Binary Files: 3
77
Build Directory: build
59.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)