Hi!
It has previously been possible to upload to and run from SRAM on the older rp2040 but it seems no longer possible on the new sibling.
Is there any planned support in the pipeline or would it be better if init were performed by the script itself?
Expected working configuration:
<CMakeLists.txt>
add_compile_definitions(PICO_NO_FLASH=1)
.. ..
pico_set_binary_type(${PROJECT_NAME} no_flash)
<ramload.cfg>
source [find interface/cmsis-dap.cfg]
adapter speed 4000
source [find target/rp2350.cfg]
transport select swd
init
reset halt
load_image image.elf
resume 0x20000000
shutdown
~I'm really sorry if this is a PEBCAK