Hi all,
We started from the asset tracker v2 application and we want to add a partition to the non secure storage just to save some additional data to nvs.
I'm a bit confused what the proper way is to configure this today. Is it correct that there are two approaches?
- The device tree overlay
- Partition manager
I've tried to configure a pm_static.yml by placing it in the configuration folder of my board, and set the env variable PM_STATIC_YML_FILE to this file (as specified here) in my CMakeLists, but this doesn't seem to do anything.
# Partition Manager file set(PM_STATIC_YML_FILE ${CMAKE_CURRENT_SOURCE_DIR}/configuration/${BOARD}/pm_static.yml)
What are we missing here?
Are there some additional configuration options missing?
Or should we use the device tree overlay?
Thanks!