Merge branch 'fix/sysview_heap_log_h4_bootloader_size' into 'master'

fix(examples): increase partition table offset for sysview heap log on ESP32-H4

See merge request espressif/esp-idf!52343
This commit is contained in:
Marius Vikhammer
2026-09-03 13:02:06 +08:00
3 changed files with 5 additions and 2 deletions

View File

@@ -33,7 +33,8 @@ def _test_examples_sysview_tracing_heap_log(openocd_dut: 'OpenOCD', idf_path: st
time.sleep(1) # Wait for the USJ port to be ready
dut.expect_exact('example: Ready for OpenOCD connection', timeout=5)
with openocd_dut.run() as oocd:
if dut.target == 'esp32p4':
# PARTITION_TABLE_OFFSET=0x10000 moves the factory app to 0x20000
if dut.target in ('esp32p4', 'esp32h4'):
oocd.write('esp appimage_offset 0x20000')
with (
open(gdb_logfile, 'w') as gdb_log,

View File

@@ -0,0 +1,2 @@
# Increase size of bootloader due to frame pointer.
CONFIG_PARTITION_TABLE_OFFSET=0x10000

View File

@@ -1,2 +1,2 @@
# Increase size of bootloader due to frame pointer. Only overflowed on P4.
# Increase size of bootloader due to frame pointer.
CONFIG_PARTITION_TABLE_OFFSET=0x10000