I am developing a BLE peripheral using the nRF5340.
I want to set MTU to change notificatio packet size.
I tried as below
<prj.conf>
CONFIG_BT_BUF_ACL_RX_SIZE=251 CONFIG_BT_BUF_ACL_TX_SIZE=251 CONFIG_BT_L2CAP_TX_MTU=247 CONFIG_BT_CTLR_DATA_LENGTH_MAX=251
<\child_image\hci_rpmsg.conf>
CONFIG_BT_BUF_ACL_RX_SIZE=251 CONFIG_BT_BUF_ACL_TX_SIZE=251 CONFIG_BT_L2CAP_TX_MTU=247 CONFIG_BT_CTLR_DATA_LENGTH_MAX=251
When building, the following warning message is displayed.
warning: BT_CTLR_DATA_LENGTH_MAX (defined at
C:/ncs/v2.2.99-dev3/nrf\subsys\bluetooth\services\fast_pair/Kconfig.fast_pair:93,
subsys/bluetooth\controller/Kconfig:432) was assigned the value '251' but got the value ''. Check
these unsatisfied dependencies: ((BT_FAST_PAIR_GATT_SERVICE && BT_FAST_PAIR && BT) ||
(BT_CTLR_DATA_LENGTH && BT_CONN && BT_CTLR && BT_HCI && BT)) (=n).
I checked in another ticket that I need to set the CONFIG of network core
But I can't find how to set it up
How can I change the MTU?
I would like a detailed answer