:orphan: .. title:: BT_L2CAP_RX_MTU .. option:: CONFIG_BT_L2CAP_RX_MTU *Maximum supported L2CAP MTU for incoming data* Type: ``int`` Help ==== Maximum size of each incoming L2CAP PDU. Direct dependencies =================== \ :option:`BT_CONN ` && \ :option:`BT_HCI_HOST ` && \ :option:`BT_HCI ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 200 if \ :option:`BT_BREDR ` - \ :option:`BT_EATT_RX_MTU ` if \ :option:`BT_EATT ` - 65 if \ :option:`BT_SMP ` - 23 Kconfig definition ================== .. highlight:: kconfig At ``subsys/bluetooth/host/Kconfig.l2cap:8`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:9`` → ``subsys/bluetooth/Kconfig:239`` → ``subsys/bluetooth/host/Kconfig:506`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → L2CAP Options .. parsed-literal:: config BT_L2CAP_RX_MTU int "Maximum supported L2CAP MTU for incoming data" range 70 1300 if \ :option:`BT_EATT ` range 65 1300 if \ :option:`BT_SMP ` range 23 1300 default 200 if \ :option:`BT_BREDR ` default \ :option:`BT_EATT_RX_MTU ` if \ :option:`BT_EATT ` default 65 if \ :option:`BT_SMP ` default 23 depends on \ :option:`BT_CONN ` && \ :option:`BT_HCI_HOST ` && \ :option:`BT_HCI ` && \ :option:`BT ` help Maximum size of each incoming L2CAP PDU. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*