Zephyr Project API 4.1.99
A Scalable Open Source RTOS
|
Bluetooth RFCOMM handling. More...
#include <zephyr/bluetooth/buf.h>
#include <zephyr/bluetooth/conn.h>
#include <zephyr/bluetooth/l2cap.h>
Go to the source code of this file.
Data Structures | |
struct | bt_rfcomm_dlc_ops |
RFCOMM DLC operations structure. More... | |
struct | bt_rfcomm_dlc |
RFCOMM DLC structure. More... | |
struct | bt_rfcomm_server |
struct | bt_rfcomm_rpn |
RFCOMM Remote Port Negotiation (RPN) structure. More... | |
Macros | |
#define | BT_RFCOMM_HDR_MAX_SIZE 4 |
RFCOMM Maximum Header Size. | |
#define | BT_RFCOMM_FCS_SIZE 1 |
RFCOMM FCS Size. | |
#define | BT_RFCOMM_BUF_SIZE(mtu) BT_L2CAP_BUF_SIZE(BT_RFCOMM_HDR_MAX_SIZE + BT_RFCOMM_FCS_SIZE + (mtu)) |
Helper to calculate needed buffer size for RFCOMM PDUs. | |
#define | BT_RFCOMM_SET_LINE_SETTINGS(data, stop, parity) |
Combine data bits, stop bits and parity into a single line settings byte. | |
#define | BT_RFCOMM_RPN_FLOW_NONE 0x00 |
#define | BT_RFCOMM_RPN_XON_CHAR 0x11 |
#define | BT_RFCOMM_RPN_XOFF_CHAR 0x13 |
#define | BT_RFCOMM_RPN_PARAM_MASK_ALL 0x3f7f |
Typedefs | |
typedef enum bt_rfcomm_role | bt_rfcomm_role_t |
Role of RFCOMM session and dlc. | |
Functions | |
int | bt_rfcomm_server_register (struct bt_rfcomm_server *server) |
Register RFCOMM server. | |
int | bt_rfcomm_dlc_connect (struct bt_conn *conn, struct bt_rfcomm_dlc *dlc, uint8_t channel) |
Connect RFCOMM channel. | |
int | bt_rfcomm_dlc_send (struct bt_rfcomm_dlc *dlc, struct net_buf *buf) |
Send data to RFCOMM. | |
int | bt_rfcomm_dlc_disconnect (struct bt_rfcomm_dlc *dlc) |
Disconnect RFCOMM dlc. | |
struct net_buf * | bt_rfcomm_create_pdu (struct net_buf_pool *pool) |
Allocate the buffer from pool after reserving head room for RFCOMM, L2CAP and ACL headers. | |
int | bt_rfcomm_send_rpn_cmd (struct bt_rfcomm_dlc *dlc, struct bt_rfcomm_rpn *rpn) |
Send Remote Port Negotiation command. | |
Bluetooth RFCOMM handling.