bt_interface_t 结构体参考文档

bt_interface_t 结构体参考

#include < bluetooth.h >

数据字段

size_t  尺寸
 
int(*  init )( bt_callbacks_t *callbacks)
 
int(*  enable )(bool guest_mode)
 
int(*  disable )(void)
 
void(*  cleanup )(void)
 
int(*  get_adapter_properties )(void)
 
int(*  get_adapter_property )( bt_property_type_t type)
 
int(*  set_adapter_property )(const bt_property_t *property)
 
int(*  get_remote_device_properties )(bt_bdaddr_t *remote_addr)
 
int(*  get_remote_device_property )(bt_bdaddr_t *remote_addr, bt_property_type_t type)
 
int(*  set_remote_device_property )(bt_bdaddr_t *remote_addr, const bt_property_t *property)
 
int(*  get_remote_service_record )(bt_bdaddr_t *remote_addr, bt_uuid_t *uuid)
 
int(*  get_remote_services )(bt_bdaddr_t *remote_addr)
 
int(*  start_discovery )(void)
 
int(*  cancel_discovery )(void)
 
int(*  create_bond )(const bt_bdaddr_t *bd_addr, int transport)
 
int(*  create_bond_out_of_band )(const bt_bdaddr_t *bd_addr, int transport, const bt_out_of_band_data_t *oob_data)
 
int(*  remove_bond )(const bt_bdaddr_t *bd_addr)
 
int(*  cancel_bond )(const bt_bdaddr_t *bd_addr)
 
int(*  get_connection_state )(const bt_bdaddr_t *bd_addr)
 
int(*  pin_reply )(const bt_bdaddr_t *bd_addr, uint8_t accept, uint8_t pin_len, bt_pin_code_t *pin_code)
 
int(*  ssp_reply )(const bt_bdaddr_t *bd_addr, bt_ssp_variant_t variant, uint8_t accept, uint32_t passkey)
 
const void *(*  get_profile_interface )(const char *profile_id)
 
int(*  dut_mode_configure )(uint8_t enable )
 
int(*  dut_mode_send )(uint16_t opcode, uint8_t *buf, uint8_t len)
 
int(*  le_test_mode )(uint16_t opcode, uint8_t *buf, uint8_t len)
 
int(*  config_hci_snoop_log )(uint8_t enable )
 
int(*  set_os_callouts )( bt_os_callouts_t *callouts)
 
int(*  read_energy_info )()
 
void(*  dump )(int fd, const char **arguments)
 
int(*  config_clear )(void)
 
void(*  interop_database_clear )(void)
 
void(*  interop_database_add )(uint16_t feature, const bt_bdaddr_t *addr, size_t len)
 

详细说明

注意:默认情况下,在初始化/启用时不会初始化任何配置文件。每当应用调用配置文件的“init”API 时,都应发生以下某种情况:

1.) 如果蓝牙未启用,则蓝牙核心应将配置文件标记为已启用。随后,当应用调用蓝牙“启用”时,在启用序列中,系统应通过调用适当的堆栈 API 来启用已标记的配置文件。“adapter_properties_cb”应返回已启用配置文件的 UUID 列表。

2.) 如果蓝牙处于启用状态,则蓝牙核心应调用堆栈配置文件 API 以初始化配置文件,并使用当前 UUID 列表(包括新添加的配置文件的 UUID)触发“adapter_properties_cb”。

每当调用配置文件“清理”API 时,都会发生相反的情况。表示标准蓝牙 DM 接口。

定义位于文件 bluetooth.h 456 行。

字段文档

int(* cancel_bond)(const bt_bdaddr_t *bd_addr)

取消保单

定义位于文件 bluetooth.h 521 行

int(* cancel_discovery)(void)

取消发现

定义位于文件 bluetooth.h 508 行。

void(* cleanup)(void)

关闭界面。

定义位于文件 bluetooth.h 472 行

int(* config_clear)(void)

清除 /data/misc/bt_config.conf 并清除所有已存储的连接

定义位于文件 bluetooth.h 580 行。

int(* config_hci_snoop_log)(uint8_t enable )

定义位于文件 bluetooth.h 557 行

int(* create_bond)(const bt_bdaddr_t *bd_addr, int transport)

创建蓝牙配对

定义位于文件 bluetooth.h 511 行。

int(* create_bond_out_of_band)(const bt_bdaddr_t *bd_addr, int transport, const bt_out_of_band_data_t *oob_data)

使用非通道数据创建蓝牙配对

定义位于文件 bluetooth.h 514 行。

int(* disable)(void)

停用蓝牙。

定义位于文件 bluetooth.h 469 行

void(* dump)(int fd, const char **arguments)

对 dumpsys 函数的原生支持。该函数是同步的,并且 |fd| 归调用方所有。|arguments| 是可能影响输出的参数,编码为 UTF-8 字符串。

定义位于文件 bluetooth.h 575 行

int(* dut_mode_configure)(uint8_t enable )

Bluetooth Test Mode API - 必须为这些 API 启用蓝牙

定义位于文件 bluetooth.h 548 行。

int(* dut_mode_send)(uint16_t opcode, uint8_t *buf, uint8_t len)

定义位于文件 bluetooth.h 551 行

int(* enable)(bool guest_mode)

启用蓝牙。

定义位于文件 bluetooth.h 466 行

int(* get_adapter_properties)(void)

在初始化时获取所有蓝牙适配器属性

定义位于文件 bluetooth.h 475 行。

int(* get_adapter_property)( bt_property_type_t type)

获取“type”的蓝牙适配器属性

定义位于文件 bluetooth.h 478 行。

int(* get_connection_state)(const bt_bdaddr_t *bd_addr)

获取给定远程设备的连接状态。返回值为 0 表示设备未连接,非零返回状态表示连接有效。

定义位于文件 bluetooth.h 528 行。

const void*(* get_profile_interface)(const char *profile_id)

获取蓝牙配置文件接口

定义位于文件 bluetooth.h 544 行。

int(* get_remote_device_properties)(bt_bdaddr_t *remote_addr)

获取所有 Remote Device 属性

定义位于文件 bluetooth.h 487 行

int(* get_remote_device_property)(bt_bdaddr_t *remote_addr, bt_property_type_t type)

获取“type”的 Remote Device 属性

定义位于文件 bluetooth.h 490 行

int(* get_remote_service_record)(bt_bdaddr_t *remote_addr, bt_uuid_t *uuid)

获取给定 UUID 的远程设备的服务记录

定义位于文件 bluetooth.h 498 行

int(* get_remote_services)(bt_bdaddr_t *remote_addr)

启动 SDP 以获取远程服务

定义位于文件 bluetooth.h 502 行

int(* init)( bt_callbacks_t *callbacks)

打开接口并向此接口的实现提供回调例程。

定义位于文件 bluetooth.h 463 行。

void(* interop_database_add)(uint16_t feature, const bt_bdaddr_t *addr, size_t len)

为设备地址的前 |len| 个字节与 |addr| 匹配的远程设备添加了新的设备互操作性权宜解决方法。注意:|feature| 必须与 interop_feature_t (interop.h) 中定义的项匹配。

定义位于文件 bluetooth.h 592 行

void(* interop_database_clear)(void)

清除(重置)设备互操作性数据库的动态部分。

定义位于文件 bluetooth.h 585 行。

int(* le_test_mode)(uint16_t opcode, uint8_t *buf, uint8_t len)

BLE 测试模式 API

定义位于文件 bluetooth.h 554 行

int(* pin_reply)(const bt_bdaddr_t *bd_addr, uint8_t accept, uint8_t pin_len, bt_pin_code_t *pin_code)

BT 旧版 PIN 码响应:如果 accept==FALSE,则 pin_len 和 pin_code 应为 0x0

定义位于文件 bluetooth.h 532 行。

int(* read_energy_info)()

读取能耗信息详情 - 返回值表示 BT_STATUS_SUCCESS 或 BT_STATUS_NOT_READY。成功表示已将 VSC 命令发送到控制器

定义位于文件 bluetooth.h 567 行。

int(* remove_bond)(const bt_bdaddr_t *bd_addr)

移除保修

定义位于文件 bluetooth.h 518 行。

int(* set_adapter_property)(const bt_property_t *property)

设置“type”的蓝牙适配器属性

定义位于文件 bluetooth.h 484 行

int(* set_os_callouts)( bt_os_callouts_t *callouts)

设置 bluedroid 需要用于闹钟和唤醒锁的操作系统调用函数。应在成功 |init| 后立即调用此方法。

定义位于文件 bluetooth.h 562 行

int(* set_remote_device_property)(bt_bdaddr_t *remote_addr, const bt_property_t *property)

设置“type”的 Remote Device 属性

定义位于文件 bluetooth.h 494 行

size_t size

设置为 sizeof(bt_interface_t)

定义位于文件 bluetooth.h 458 行

int(* ssp_reply)(const bt_bdaddr_t *bd_addr, bt_ssp_variant_t variant, uint8_t accept, uint32_t passkey)

BT SSP 回复 - 即时配对、数字比较和通行密钥 对于 BT_SSP_VARIANT_PASSKEY_COMPARISON 和 BT_SSP_VARIANT_CONSENT,通行密钥应为零。对于 BT_SSP_VARIANT_PASSKEY_ENTRY,如果 accept==FALSE,则通行密钥应为零

定义位于文件 bluetooth.h 540 行

int(* start_discovery)(void)

开始探索

定义位于文件 bluetooth.h 505 行


此结构体的文档是根据以下文件生成的: