summaryrefslogtreecommitdiff
path: root/hw/bsp/nrf/boards/nrf54h20dk/board.cmake
blob: 8095b59fe92401234d3f4d2e1eae624009c49de9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set(MCU_VARIANT nrf54h20)

function(update_board TARGET)
  # 32 KB primary RAM is too tight for memory-heavy examples (e.g. video YUY2
  # framebuf). TODO: route static .bss to RAM00 (512 KB) and drop this.
  target_compile_definitions(${TARGET} PUBLIC
    CFG_EXAMPLE_VIDEO_READONLY
    )
  target_sources(${TARGET} PRIVATE
#    ${NRFX_PATH}/drivers/src/nrfx_usbreg.c
    )
endfunction()