Hi,
In one module of an application I would like to statically declare a large buffer in SRAM: static uint8_t largeBuffer[65536];
The application fails to link with the following error:
/opt/toolchains/zephyr-sdk-0.11.1/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/9.2.0/../../../../arm-zephyr-eabi/bin/ld: region `SRAM' overflowed by 62972 bytes
For the nRF9160, is there a reference for how to assign variables to SRAM slots, allowing modules to manage their own encapsulated static data?
Thanks,
Paul