Hi,
I have my programming environment set up to use the nRF Connect SDK through VS Code, as the most recent documentation suggests. I can successfully build and flash code onto my nRF52840-DK (PCA10056). My goal at the moment is to do a simple proof-of-concept of the coded PHY feature on the nRF52811 SoC to test the practical range. I wanted to use the "central_hr_coded" example and the "peripheral_hr_coded" example to do this. The problem is that when I set the build configuration to nrf52840dk_nrf52811 to simulate the 811, I get the following error:
c:/nordicsemi/v1.9.0/toolchain/opt/bin/../lib/gcc/arm-none-eabi/9.2.1/../../../../arm-none-eabi/bin/ld.exe: zephyr\zephyr_pre0.elf section `noinit' will not fit in region `SRAM'
c:/nordicsemi/v1.9.0/toolchain/opt/bin/../lib/gcc/arm-none-eabi/9.2.1/../../../../arm-none-eabi/bin/ld.exe: region `SRAM' overflowed by 909 bytes
This is for the peripheral example. For the central example, the SRAM overflows by 6107 bytes. As far as I can tell, these examples contain almost nothing, they just simulate a simple heart-rate monitor and battery monitoring.
So my question is this: Is there a quick and dirty way to test the coded phy on the nRF52811 through VS Code with the nRF Connect SDK that will actually fit in the nRF52811 SRAM constraints? Since I'm just testing the range, I was hoping to avoid writing complicated/custom code at this stage.
You help is much appreciated, cheers!