File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11set (MCU_VARIANT nrf54h20)
22
33function (update_board TARGET )
4- # temporarily, 54h20 has multiple sram sections
4+ # 32 KB primary RAM is too tight for memory-heavy examples (e.g. video YUY2
5+ # framebuf). TODO: route static .bss to RAM00 (512 KB) and drop this.
56 target_compile_definitions (${TARGET} PUBLIC
67 CFG_EXAMPLE_VIDEO_READONLY
78 )
Original file line number Diff line number Diff line change 11MCU_VARIANT = nrf54h20
22CFLAGS += -DNRF54H20_XXAA
33
4+ # 32 KB primary RAM is too tight for memory-heavy examples (e.g. video YUY2
5+ # framebuf). Match the CMake build (board.cmake) — TODO: route static .bss to
6+ # RAM00 (512 KB) and drop this.
7+ CFLAGS += -DCFG_EXAMPLE_VIDEO_READONLY
8+
49# enable max3421 host driver for this board
510MAX3421_HOST = 1
611
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ set(MCU_VARIANT nrf54lm20a_enga)
22set (JLINK_DEVICE NRF54LM20A_M33)
33
44function (update_board TARGET )
5- target_compile_definitions (${TARGET} PUBLIC
6- CFG_EXAMPLE_VIDEO_READONLY
7- )
5+ # No board-specific overrides needed — primary 256 KB RAM is plenty for
6+ # memory-heavy examples (video YUY2 framebuf etc.).
87endfunction ()
You can’t perform that action at this time.
0 commit comments