Hello Devzone Support,
is it possible to run the "Memory Report" from the nRF Connect SDK VS Code extension also from the console for continuous integration purposes?
Best regards,
Patrick
Hello Devzone Support,
is it possible to run the "Memory Report" from the nRF Connect SDK VS Code extension also from the console for continuous integration purposes?
Best regards,
Patrick
Yes:
west build -t rom_report west build -t ram_report west build -t partition_manager_report
or
cd build ninja rom_report ninja ram_report ninja partition_manager_report
The second option works for child images as well.
Here is an example for MCUboot:
cd build/mcuboot ninja rom_report ninja ram_report ninja partition_manager_report
Documentation:
Regards,
Sigurd Hellesvik
Bonus tip:
You can find available commands for a build with
cd build ninja help
Regards,
Sigurd Hellesvik
Great, thank you very much!
Great, thank you very much!