RAM allocation

Hi all

I have a problem with allocate RAM.

I build the project as non secure.

in the zephyr.dts file, you can see that the memory is divided into 3 areas:

sram0_s:image_s@20000000 {
register = <0x20000000 0x16000>;
};
sram0_modem: image_modem@20016000 {
register = <0x20016000 0xa000>;
};
sram0_ns: image_ns@20020000 {
register = <0x20020000 0x20000>;
};

How to reallocate memory to increase sram0_ns?

Related