Direction finding connectionless RX (locator)

I am currently working on a Direction Finding project, but I am facing an issue in prj.conf.

I use an nRF52811 custom board for Direction Finding. In the board selection under the build configuration, I created a custom board and built it, but the build fails due to RAM size overflow by 704 bytes.

How can I modify prj.conf to optimize the code? I tried selecting Optimize for Size in the build configuration, but it did not reduce the size."

Would you like help with optimizing prj.conf to fit within the RAM constraints

this is my prj.conf :-   

CONFIG_BT=y
CONFIG_BT_DEVICE_NAME="DF Connectionless Locator App"

CONFIG_BT_EXT_ADV=y
CONFIG_BT_PER_ADV_SYNC=y
CONFIG_BT_OBSERVER=y

# Enable Direction Finding Feature including AoA and AoD
CONFIG_BT_DF=y
CONFIG_BT_DF_CONNECTIONLESS_CTE_RX=y


Related