Data Buffers¶
API Reference¶
-
group
bt_buf
Data buffers.
Defines
-
BT_BUF_USER_DATA_MIN
¶ Minimum amount of user data size for buffers passed to the stack.
-
BT_BUF_RESERVE
¶
-
BT_BUF_SIZE
(size)¶
-
BT_BUF_RX_SIZE
¶ Data size neeed for HCI RX buffers
Enums
Functions
-
struct net_buf *
bt_buf_get_rx
(enum bt_buf_type type, s32_t timeout)¶ Allocate a buffer for incoming data
This will set the buffer type so bt_buf_set_type() does not need to be explicitly called before bt_recv_prio().
- Return
A new buffer.
- Parameters
type
: Type of buffer. Only BT_BUF_EVT and BT_BUF_ACL_IN are allowed.timeout
: Timeout in milliseconds, or one of the special values K_NO_WAIT and K_FOREVER.
-
struct net_buf *
bt_buf_get_cmd_complete
(s32_t timeout)¶ Allocate a buffer for an HCI Command Complete/Status Event
This will set the buffer type so bt_buf_set_type() does not need to be explicitly called before bt_recv_prio().
- Return
A new buffer.
- Parameters
timeout
: Timeout in milliseconds, or one of the special values K_NO_WAIT and K_FOREVER.
-
struct net_buf *
bt_buf_get_evt
(u8_t evt, bool discardable, s32_t timeout)¶ Allocate a buffer for an HCI Event
This will set the buffer type so bt_buf_set_type() does not need to be explicitly called before bt_recv_prio() or bt_recv().
- Return
A new buffer.
- Parameters
evt
: HCI event codediscardable
: Whether the driver considers the event discardable.timeout
: Timeout in milliseconds, or one of the special values K_NO_WAIT and K_FOREVER.
-