Hey all,
I've been bringing up the nRF9160 Feather and noticed some curious issues with adding an external partition when MCUboot is enabled.
I first tested the external chip without MCUboot using the example provided at this path: ncs/zephyr/samples/subsys/fs/littlefs
The tests passed with an .overlay file like so:
Now I'm trying to merge together the MCUboot + External LittleFS into one app.
My prj.conf looks like so:
After some serious searching, I found there was some documentation related to external flash plus Nordic's partition manager. I was able to get the external flash to show up in the devicetree_legacy_unfixed.h
It's not quite clear to me where the devicetree ends and the partition manager begins. Here's some output from my app versus the example code:
My code (which is some of the early bits of the LittleFS example)
You can see it's referencing the correct ID but not the rest of the correct info. (Like the mount point, name, size, etc)
Any help is appreciated!