External Memory on 9160dk

Hi everyone,

  I working on a project for nrf9160 in 9160DK and i need to use the external flash memory onboard with nvs.h but i can't get it to work by anyway and a try to looking for an example or sample in Nordic site and forum but all topics that i founded are much old and don't compile (consider that i'm on ncs v2.6.1). Can someone provide me one example or sample for this? Thanks!

Parents
  • Hello,

    Have you followed the guidelines for configuring external flash on nRF9160 DK here?

    The Modem trace external flash backend sample configures and uses the external flash.

    Best regards,

    Maria

  • Hello Maria,

    I saw this sample now. Early i followed the guideline for external memory use, flashing the 52840 firmware corretly and creating the necessary overlay like as described. My problem (i guess) is for instanciate and use the memory in aplication. This sample (modem_trace_flash) also don't show how do that (I don't see nothing in main.c about memory usage). 

  • Hi Felipe,

    Felipe Dantas said:
    I saw this sample now. Early i followed the guideline for external memory use, flashing the 52840 firmware corretly and creating the necessary overlay like as described.

    Great!

    Felipe Dantas said:
    My problem (i guess) is for instanciate and use the memory in aplication. This sample (modem_trace_flash) also don't show how do that (I don't see nothing in main.c about memory usage). 

    You can refer to the NVS sample from Zephyr. When external flash is enabled, the NVS partition is automatically placed in external flash, and nvs_write() and nvs_read() can be used to write to/read from external flash.

    Best regards,

    Maria

  • Ohh, interesting! 

    I already used NVS to get start non volatile memory usage some time before, and, cause this, already familiarized with NVS sample. In my application, i use NVS with internal flash to store some user config variables like as server hostname, username, password... You say that NVS is automatically placed in external flash. By this way, i understood that isn't possible use internal and external flash with NVS at same time, is it?

    I understand that the linkage between fisical memory sector and "code" occurs here( this is in NVS Sample):

    #define NVS_PARTITION       storage_partition
    #define NVS_PARTITION_DEVICE    FIXED_PARTITION_DEVICE(NVS_PARTITION)
    #define NVS_PARTITION_OFFSET    FIXED_PARTITION_OFFSET(NVS_PARTITION)
    static struct nvs_fs fs;
    fs.flash_device = NVS_PARTITION_DEVICE;


    I thinking in try something like this:
    #define NVS_PARTITION       external_flash

    But now, I don't know if is the correctly way. 

    Can you understand my doubts at this point?
Reply
  • Ohh, interesting! 

    I already used NVS to get start non volatile memory usage some time before, and, cause this, already familiarized with NVS sample. In my application, i use NVS with internal flash to store some user config variables like as server hostname, username, password... You say that NVS is automatically placed in external flash. By this way, i understood that isn't possible use internal and external flash with NVS at same time, is it?

    I understand that the linkage between fisical memory sector and "code" occurs here( this is in NVS Sample):

    #define NVS_PARTITION       storage_partition
    #define NVS_PARTITION_DEVICE    FIXED_PARTITION_DEVICE(NVS_PARTITION)
    #define NVS_PARTITION_OFFSET    FIXED_PARTITION_OFFSET(NVS_PARTITION)
    static struct nvs_fs fs;
    fs.flash_device = NVS_PARTITION_DEVICE;


    I thinking in try something like this:
    #define NVS_PARTITION       external_flash

    But now, I don't know if is the correctly way. 

    Can you understand my doubts at this point?
Children
No Data
Related