Kconfig.l2cap 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # Bluetooth ATT/GATT configuration options
  2. # Copyright (c) 2019 Intel Corporation
  3. # SPDX-License-Identifier: Apache-2.0
  4. menu "L2CAP Options"
  5. config BT_L2CAP_RX_MTU
  6. int "Maximum supported L2CAP MTU for incoming data"
  7. default 672 if BT_BREDR
  8. default BT_EATT_RX_MTU if BT_EATT
  9. default 65 if BT_SMP
  10. default 23
  11. range 70 1300 if BT_EATT
  12. range 65 1300 if BT_SMP
  13. range 23 1300
  14. help
  15. Maximum size of each incoming L2CAP PDU.
  16. config BT_L2CAP_TX_BUF_COUNT
  17. int "Number of L2CAP TX buffers"
  18. # default NET_BUF_TX_COUNT if NET_L2_BT
  19. # default BT_CTLR_TX_BUFFERS if BT_CTLR
  20. default 6
  21. range 2 255
  22. help
  23. Number of buffers available for outgoing L2CAP packets.
  24. config BT_L2CAP_TX_FRAG_COUNT
  25. int "Number of L2CAP TX fragment buffers"
  26. #default NET_BUF_TX_COUNT if NET_L2_BT
  27. default 2
  28. range 0 255
  29. help
  30. Number of buffers available for fragments of TX buffers. Warning:
  31. setting this to 0 means that the application must ensure that
  32. queued TX buffers never need to be fragmented, i.e. that the
  33. controller's buffer size is large enough. If this is not ensured,
  34. and there are no dedicated fragment buffers, a deadlock may occur.
  35. In most cases the default value of 2 is a safe bet.
  36. config BT_L2CAP_TX_MTU
  37. int "Maximum supported L2CAP MTU for L2CAP TX buffers"
  38. default 672 if BT_BREDR
  39. default 65 if BT_SMP
  40. default 23
  41. range 65 2000 if BT_SMP
  42. range 23 2000
  43. help
  44. Maximum L2CAP MTU for L2CAP TX buffers.
  45. config BT_L2CAP_DYNAMIC_CHANNEL
  46. bool "L2CAP Dynamic Channel support"
  47. depends on BT_SMP
  48. help
  49. This option enables support for LE Connection oriented Channels,
  50. allowing the creation of dynamic L2CAP Channels.
  51. config BT_L2CAP_ECRED
  52. bool "L2CAP Enhanced Credit Based Flow Control support"
  53. depends on BT_L2CAP_DYNAMIC_CHANNEL
  54. help
  55. This option enables support for LE Connection oriented Channels with
  56. Enhanced Credit Based Flow Control support on dynamic L2CAP Channels.
  57. config BT_DEBUG_L2CAP
  58. bool "Bluetooth L2CAP debug"
  59. depends on BT_DEBUG
  60. help
  61. This option enables debug support for the Bluetooth
  62. L2ACP layer.
  63. endmenu