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.) 블루투스가 사용 설정되지 않은 경우 블루투스 코어는 프로필을 사용 설정된 것으로 표시해야 합니다. 이후 애플리케이션이 블루투스 'enable'를 호출하면 사용 설정 시퀀스의 일부로 적절한 스택 API를 호출하여 표시된 프로필이 사용 설정됩니다. 'adapter_properties_cb'는 사용 설정된 프로필의 UUID 목록을 반환해야 합니다.
2.) 블루투스가 사용 설정된 경우 블루투스 코어는 스택 프로필 API를 호출하여 프로필을 초기화하고 새로 추가된 프로필의 UUID를 포함한 현재 UUID 목록으로 'adapter_properties_cb'를 트리거합니다.
프로필 'cleanup' 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 FILE의 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 ) |
블루투스 테스트 모드 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) |
init 시 모든 블루투스 어댑터 속성 가져오기
bluetooth.h 파일의 475 번 째 줄에 정의되어 있습니다.
int(* get_adapter_property)( bt_property_type_t type) |
'type'의 블루투스 어댑터 속성 가져오기
bluetooth.h FILE의 478 라인에 정의되어 있습니다.
int(* get_connection_state)(const bt_bdaddr_t *bd_addr) |
지정된 원격 기기의 연결 상태를 가져옵니다. 반환 값이 0이면 기기가 연결되어 있지 않은 것이고 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) |
모든 원격 기기 속성 가져오기
bluetooth.h FILE의 487 라인에 정의가 있습니다.
int(* get_remote_device_property)(bt_bdaddr_t *remote_addr, bt_property_type_t type) |
'유형'의 원격 기기 속성 가져오기
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 레거시 PinKey 답장 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가 알람 및 절전 모드 잠금에 필요한 OS 호출 함수를 설정합니다. |init|이 성공한 직후에 호출해야 합니다.
bluetooth.h 파일의 562 라인에 정의가 있습니다.
int(* set_remote_device_property)(bt_bdaddr_t *remote_addr, const bt_property_t *property) |
'type'의 원격 기기 속성 설정
bluetooth.h 파일의 494 줄에 정의되어 있습니다.
size_t 크기 |
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의 경우 숫자 비교 및 패스키 패스키는 0이어야 합니다. BT_SSP_VARIANT_PASSKEY_ENTRY의 경우 accept==FALSE인 경우 패스키는 0이어야 합니다.
bluetooth.h 파일의 540 줄에 정의되어 있습니다.
int(* start_discovery)(void) |
탐색 시작
bluetooth.h 파일의 505 줄에 정의가 있습니다.
이 구조체에 관한 문서는 다음 파일에서 생성되었습니다.
- hardware/libhardware/include/hardware/ bluetooth.h