Skip to content

Commit a957eed

Browse files
Copilotsofthack007
andcommitted
Fix remaining esp32dev references in scripts
Changed all remaining esp32dev references to esp32_4MB_V4_S_eth: - run-qemu.sh: Updated default FIRMWARE_DIR - monitor-qemu.py: Updated default firmware_dir All scripts now consistently use the V4 Sound Reactive ethernet build instead of the generic esp32dev build. Co-authored-by: softhack007 <[email protected]>
1 parent 3c9a68f commit a957eed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/monitor-qemu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ def monitor_output(firmware_dir):
8989
exception_lines = []
9090

9191
if __name__ == '__main__':
92-
firmware_dir = sys.argv[1] if len(sys.argv) > 1 else '.pio/build/esp32dev'
92+
firmware_dir = sys.argv[1] if len(sys.argv) > 1 else '.pio/build/esp32_4MB_V4_S_eth'
9393
monitor_output(firmware_dir)

.github/scripts/run-qemu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
set -e
1111

12-
FIRMWARE_DIR="${1:-.pio/build/esp32dev}"
12+
FIRMWARE_DIR="${1:-.pio/build/esp32_4MB_V4_S_eth}"
1313
QEMU_DIR="${2:-qemu-esp32}"
1414
HTTP_PORT="${3:-8080}" # Default to 8080 (non-privileged port)
1515

0 commit comments

Comments
 (0)