trying to build a long range coded phy broadcast/scanning application. as I know zephyr doesn't support that so we have to include nordic link layer based on this post
the problem is, Zehpyr can't see the NRFxlib
I followed this tutorial to install NRFx with zephyr with no luck
https://jimmywongiot.com/2019/12/18/step-by-step-on-nordic-connect-sdk-for-development/
tried also to copy the nrfxlib and import the kconfig file into my zephyr enviroment.
https://github.com/nrfconnect/sdk-nrfxlib
actually, I find nowhere in any file on nrfx library this text "LL_NRFXLIB"
tried also to include CONFIG_SOFTDEVICE_CONTROLLER_S140 with no luck.
so, What do i miss?
I always get
prj.conf:9: warning: attempt to assign the value 'y' to the undefined symbol BT_LL_NRFXLIB_DEFAULT
this is my prj.conf
CONFIG_BT=y
CONFIG_BT_BROADCASTER=y
CONFIG_BT_OBSERVER=y
CONFIG_BOARD_NRF52840DONGLE_NRF52840=y
# Link Layer
#NRF
#CONFIG_SOFTDEVICE_CONTROLLER_S140=y
CONFIG_BT_LL_NRFXLIB_DEFAULT=y
#NRF
CONFIG_BT_EXT_ADV=y
CONFIG_BT_CTLR_PHY_CODED=y
CONFIG_GPIO=y
CONFIG_USB=y
CONFIG_USB_DEVICE_STACK=y
CONFIG_USB_DEVICE_PRODUCT="Qoudra BLE"
CONFIG_USB_UART_CONSOLE=y
CONFIG_UART_INTERRUPT_DRIVEN=y
CONFIG_UART_LINE_CTRL=y
CONFIG_UART_CONSOLE_ON_DEV_NAME="CDC_ACM_0"