text
stringlengths
1
9.98k
__index_level_0__
int64
0
4.17k
** ** Parameters conn_id: connection ID which identify the server. ** db: output parameter which will contain gatt db copy. ** Caller is responsible for freeing it. ** count: number of elements in db. ** / extern void BTA_GATTC_GetGattDb(UINT16 conn_id, UINT...
3,029
** e_handle - end hanle ** uuid - The attribute UUID. ** ** Returns None ** / void BTA_GATTC_Read_by_type(UINT16 conn_id, UINT16 s_handle,UINT16 e_handle, tBT_UUID *uuid, tBTA_GATT_AUTH_REQ auth_req); / ** ** Function BTA_GATTC_ReadCharDescr ** ** Description Th...
3,029
** ** Parameters conn_id - connection ID ** handle - descriptor handle to write. ** write_type - type of write. ** p_value - the value to be written. ** ** Returns None ** / void BTA_GATTC_WriteCharDescr (UINT16 conn_id, U...
3,029
** ** Parameters client_if - client interface. ** remote_bda - target GATT server. ** handle - GATT characteristic handle. ** ** Returns OK if registration succeed, otherwise failed. ** / extern tBTA_GATT_STATUS BTA_GATTC_RegisterForNotifications (tBTA_GATTC_IF cli...
3,029
** ** Parameters conn_id - connection ID. ** handle - GATT characteritic handle. ** offset - offset of the write value. ** len - length of the data to be written. ** p_value - the value to be written. ** ** Returns None ** / extern void...
3,029
** p_value - the value to be written. ** ** Returns None ** / extern void BTA_GATTC_PrepareWriteCharDescr (UINT16 conn_id, UINT16 handle, UINT16 offset, t...
3,029
** ** Returns None ** / extern void BTA_GATTC_ReadMultiple(UINT16 conn_id, tBTA_GATTC_MULTI *p_read_multi, tBTA_GATT_AUTH_REQ auth_req); / ** ** Function BTA_GATTC_ReadMultiple ** ** Description This function is called to read multiple variable length character...
3,029
** ** Returns void ** / extern void BTA_GATTC_Clean(BD_ADDR remote_bda); / ** ** Function BTA_GATTC_Listen ** ** Description Start advertisement to listen for connection request. ** ** Parameters client_if: server interface. ** start: to start or stop listening for connect...
3,029
This can be done ** only once per connection. ** ** Parameters conn_id: connection ID. ** ** ** Returns void ** / extern void BTA_GATTC_ConfigureMTU (UINT16 conn_id); / ** BTA GATT Server API / / ** ** Function BTA_GATTS_Init ** ** Description This function is called to ...
3,029
** ** Parameters server_if: server interface ** ** Returns void ** / extern void BTA_GATTS_AppDeregister(tBTA_GATTS_IF server_if); / ** ** Function BTA_GATTS_CreateService ** ** Description Create a service. When service creation is done, a callback ** event BTA_GATTS_CREA...
3,029
After included ** service is included, a callback event BTA_GATTS_ADD_INCL_SRVC_EVT ** is reported the included service ID. ** ** Parameters service_id: service ID to which this included service is to ** be added. ** included_service...
3,029
When ** it's done, a callback event BTA_GATTS_ADD_DESCR_EVT is called ** to report the status and an ID number for this descriptor. ** ** Parameters service_id: service ID to which this charatceristic descriptor is to ** be added. ** ...
3,029
** ** Parameters service_id: service_id to be deleted. ** ** Returns returns none. ** / extern void BTA_GATTS_DeleteService(UINT16 service_id); / ** ** Function BTA_GATTS_StartService ** ** Description This function is called to start a service. ** ** Parameters service_id: the serv...
3,029
** data_len - indicate data length. ** p_data: data to indicate. ** need_confirm - if this indication expects a confirmation or not. ** ** Returns None ** / extern void BTA_GATTS_HandleValueIndication (UINT16 conn_id, UINT16 attr_id, ...
3,029
** length - the value length which has been set to the attribute. ** value - the pointer to the value ** ** Returns None ** / extern void BTA_SetAttributeValue(UINT16 attr_handle, UINT16 length, UINT8 *value); / ** ** Function BTA_GetAttributeValue ** ** Des...
3,029
** is_direct: direct connection or background auto connection ** ** Returns void ** / extern void BTA_GATTS_Open(tBTA_GATTS_IF server_if, BD_ADDR remote_bda, BOOLEAN is_direct, tBTA_GATT_TRANSPORT transport); / ** ** Function BTA_GATTS_CancelOpen ** ** Des...
3,029
** ** Returns void ** / void BTA_GATTS_SendServiceChangeIndication(tBTA_GATTS_IF server_if, BD_ADDR remote_bda); / ** ** Function BTA_GATTS_Listen ** ** Description Start advertisement to listen for connection request for a ** GATT server ** ** Parameters server_if: serve...
3,029
/ / #ifndef BTA_SYS_H #define BTA_SYS_H #include "common/bt_target.h" #include "common/bt_defs.h" / ** Constants and data types / /* vendor specific event handler function type */ typedef BOOLEAN (tBTA_SYS_VS_EVT_HDLR)(UINT16 evt, void *p); /* event handler function type */ typedef BOOLEAN (tBTA_SYS_EVT_HDLR)(BT_...
3,030
*/ /* JV */ #define BTA_ID_JV1 44 /* JV1 */ #define BTA_ID_JV2 45 /* JV2 */ #define BTA_ID_MAX (44 + BTA_DM_NUM_JV_ID) typedef UINT8 tBTA_SYS_ID; #define BTA_SYS_CONN_OPEN 0x00 #define BTA_SYS_CONN_CLOSE 0x01 #define BTA_SYS_APP_OPEN 0x...
3,030
= TRUE) /* eir callback for adding/removeing UUID */ typedef void (tBTA_SYS_EIR_CBACK)(tBT_UUID uuid, BOOLEAN adding); #endif /* registration structure */ typedef struct { tBTA_SYS_EVT_HDLR *evt_hdlr; tBTA_SYS_DISABLE *disable; } tBTA_SYS_REG; /* data type to send events to BTA SYS HW manager */ typedef ...
3,030
*/ enum { BTA_SYS_HW_OFF_EVT, BTA_SYS_HW_ON_EVT, BTA_SYS_HW_STARTING_EVT, BTA_SYS_HW_STOPPING_EVT, BTA_SYS_HW_ERROR_EVT }; typedef UINT8 tBTA_SYS_HW_EVT; /* HW enable callback type */ typedef void (tBTA_SYS_HW_CBACK)(tBTA_SYS_HW_EVT status); / ** Function declarations / #ifdef __cplusplus exte...
3,030
= TRUE) extern void bta_sys_eir_register(tBTA_SYS_EIR_CBACK *p_cback); extern void bta_sys_add_uuid(UINT16 uuid); extern void bta_sys_add_uuid_32(UINT32 uuid32); extern void bta_sys_add_uuid_128(UINT8 *uuid128); extern void bta_sys_remove_uuid(UINT16 uuid16); extern void bta_sys_remove_uuid_32(UINT32 uuid32); extern vo...
3,030
/ #ifndef BTA_HD_API_H #define BTA_HD_API_H #include "bta_api.h" #include "stack/hidd_api.h" #if BTA_HD_INCLUDED == TRUE / / #ifndef BTA_HD_DEBUG #define BTA_HD_DEBUG TRUE #endif /* BTA HID Device callback events */ #define BTA_HD_ENABLE_EVT 0 /* BT-HD enabled */ #define BTA_HD_DISABLE_EVT 1 /* BT-...
3,031
/ / #ifndef BTA_GATTC_CO_H #define BTA_GATTC_CO_H #include "bta/bta_gatt_api.h" #include "osi/hash_functions.h" / ** ** Function bta_gattc_co_cache_open ** ** Description This callout function is executed by GATTC when a GATT server ** cache is ready to be sent. ** ** Parameter s...
3,032
** ** Returns void. ** / extern void bta_gattc_co_cache_close(BD_ADDR server_bda, UINT16 conn_id); / ** ** Function bta_gattc_co_cache_save ** ** Description This callout function is executed by GATT when a server cache ** is available to save. ** ** Parameter server_bda:...
3,032
** ** Parameter server_bda: server bd address of this cache belongs to ** evt: call in event to be passed in when cache save is done. ** num_attr: number of attribute to be save. ** attr_index: starting attribute index of the save operation. ** ...
3,032
/ / #ifndef BTA_API_H #define BTA_API_H #include "common/bt_target.h" #include "stack/bt_types.h" #include "stack/btm_api.h" // #include "uipc_msg.h" #include "stack/sdp_api.h" // #if BLE_INCLUDED == TRUE #include "stack/btm_ble_api.h" // #endif / ** Constants and data types / /* Status Return Value */ #define BT...
3,033
*/ #define BTA_HSP_SERVICE_ID 5 /* Headset profile. */ #define BTA_HFP_SERVICE_ID 6 /* Hands-free profile. */ #define BTA_OPP_SERVICE_ID 7 /* Object push */ #define BTA_FTP_SERVICE_ID 8 /* File transfer */ #define BTA_CTP_SERVICE_ID 9 /* Cordl...
3,033
*/ #define BTA_DUN_SERVICE_MASK 0x00000004 /* Dial-up networking profile. */ #define BTA_FAX_SERVICE_MASK 0x00000008 /* Fax profile. */ #define BTA_LAP_SERVICE_MASK 0x00000010 /* LAN access profile. */ #define BTA_HSP_SERVICE_MASK 0x00000020 /* HSP AG role. */ #define BTA_HFP_SERVICE_MA...
3,033
*/ #else #define BTA_ALL_SERVICE_MASK 0x1FFFFFFF /* All services supported by BTA. */ #endif typedef UINT32 tBTA_SERVICE_MASK; /* extended service mask, including mask with one or more GATT UUID */ typedef struct { tBTA_SERVICE_MASK srvc_mask; UINT8 num_uuid; tBT_UUID *...
3,033
*/ #define BTA_DM_GENERAL_DISC BTM_GENERAL_DISCOVERABLE /* General discoverable. */ #define BTA_DM_LIMITED_DISC BTM_LIMITED_DISCOVERABLE /* Limited discoverable. */ #if ((defined BLE_INCLUDED) && (BLE_INCLUDED == TRUE)) #define BTA_DM_BLE_NON_DISCOVERABLE BTM_BLE_NON_DISCOVERABLE /* Device ...
3,033
*/ #define BTA_DM_BLE_CONNECTABLE BTM_BLE_CONNECTABLE /* Device is LE connectable. */ #endif // btla-specific ++ typedef UINT16 tBTA_DM_CONN; #define BTA_TRANSPORT_UNKNOWN 0 #define BTA_TRANSPORT_BR_EDR BT_TRANSPORT_BR_EDR #define BTA_TRANSPORT_LE BT_TRANSPORT_LE typedef tBT_TRANSPORT tB...
3,033
*/ #define BTA_BLE_LIMITED_INQUIRY BTM_BLE_LIMITED_INQUIRY /* Perform LE limited inquiry. */ #endif typedef UINT8 tBTA_DM_INQ_MODE; /* Inquiry Filter Type */ #define BTA_DM_INQ_CLR BTM_CLR_INQUIRY_FILTER /* Clear inquiry filter. */ #define BTA_DM_INQ_DEV_CLASS BTM_FILTER_COND_DEVICE_CLASS ...
3,033
It can have simulateous connection in Master and Slave roles for short period of time */ BTA_DM_FULL_SCATTERNET /* Device can have simultaneous connection in master and slave roles */ }; /* Inquiry ...
3,033
Set to zero for unlimited responses. */ BOOLEAN report_dup; /* report duplicated inquiry response with higher RSSI value */ tBTA_DM_INQ_FILT filter_type; /* Filter condition type. */ tBTA_DM_INQ_COND filter_cond; /* Filter condition data. */ #if (defined(BTA_HOST_INTERLEAVE_SEA...
3,033
It ** is returned in the results callback if registered. */ typedef struct { UINT8 conn_mode; tBTA_BLE_AD_MASK ad_mask; /* mask of the valid adv data field */ UINT8 flag; UINT8 tx_power_level; UINT8 remote_name_len; UINT8 ...
3,033
** ** ** ** Returns void ** / extern void BTA_DmDiscoverByTransport(BD_ADDR bd_addr, tBTA_SERVICE_MASK_EXT *p_services, tBTA_DM_SEARCH_CBACK *p_cback, BOOLEAN sdp_search, tBTA_TRANSPORT transport); / ** ** Function BTA_DmSetE...
3,033
** ** Parameters start: start or stop observe. ** duration : Duration of the scan. Continuous scan if 0 is passed ** p_results_cb: Callback to be called with scan results ** ** Returns void ** / extern void BTA_DmBleObserve(BOOLEAN start, UINT32 duration, ...
3,033
** set_local_privacy_cback -callback to be called with result ** Returns void ** / extern void BTA_DmBleConfigLocalPrivacy(BOOLEAN privacy_enable, tBTA_SET_LOCAL_PRIVACY_CBACK *set_local_privacy_cback); / ** ** Function BTA_DmBleConfigLocalIcon ** ** Description set gap local ic...
3,033
** raw_adv_len : raw advertising data length. ** p_adv_data_cback : set adv data complete callback. ** ** Returns None ** / extern void BTA_DmBleSetAdvConfigRaw (UINT8 *p_raw_adv, UINT32 raw_adv_len, tBTA_SET_ADV_DATA_CMPL_CBACK *p_adv_data_cback);...
3,033
** ** Parameters Pointer to User defined ADV data structure ** ** Returns None ** / extern void BTA_DmBleSetScanRsp (tBTA_BLE_AD_MASK data_mask, tBTA_BLE_ADV_DATA *p_adv_cfg, tBTA_SET_ADV_DATA_CMPL_CBACK *p_adv_data_cback); / ** ** Funct...
3,033
** type : device info type. ** device_info: device info ** p_update_duplicate_ignore_list_cback : update complete callback. ** ** Returns None ** / extern void BTA_DmUpdateDuplicateExceptionalList(UINT8 subcode, UINT32 type, ...
3,033
** ** Parameters: bd_addr - BD address of the peer ** min_int - minimum connection interval, [0x0004~ 0x4000] ** max_int - maximum connection interval, [0x0004~ 0x4000] ** latency - slave latency [0 ~ 500] ** timeout - s...
3,033
Setting it to 0 will disable threshold notification ** p_setup_cback - Setup callback ** p_thres_cback - Threshold callback ** p_rep_cback - Reports callback ** ref_value - Reference value ** ** Returns None ** / extern void BTA_DmBleSetStor...
3,033
** ** Parameters action: to read/write/clear ** cond_type: filter condition type ** filt_index - Filter index ** p_cond: filter condition parameter ** p_cmpl_back - Command completed callback ** ref_value - Reference value ** **...
3,033
/ / #ifndef BTA_AR_API_H #define BTA_AR_API_H #include "stack/avdt_api.h" #include "stack/avct_api.h" #include "stack/avrc_api.h" #include "stack/sdp_api.h" #include "bta/bta_av_api.h" #include "bta/bta_sys.h" #if (BTA_AR_INCLUDED == TRUE) / ** Constants and data types / /* This event signal to AR user that other ...
3,034
** If the other sys modules started a timer for PENDING_EVT, ** the timer can be stopped now. ** ** Returns void ** / extern void bta_ar_avdt_conn(tBTA_SYS_ID sys_id, BD_ADDR bd_addr); / ** ** Function bta_ar_reg_avct ** ** Description This function is called to...
3,034
** ** Returns void ** / extern void bta_ar_dereg_avrc(UINT16 service_uuid, tBTA_SYS_ID sys_id); #ifdef __cplusplus } #endif #endif ///BTA_AR_INCLUDED == TRUE #endif /* BTA_AR_API_H */
3,034
/ / #ifndef BTA_DM_CI_H #define BTA_DM_CI_H #include "bta/bta_api.h" / ** Function Declarations / #ifdef __cplusplus extern "C" { #endif / ** ** Function bta_dm_ci_io_req ** ** Description This function must be called in response to function ** bta_dm_co_io_req(), if *p_oob_data is se...
3,035
/* */ / / #include "stack/bt_types.h" #ifdef __cplusplus extern "C" { #endif extern void BTA_GATT_SetLocalMTU(uint16_t mtu); extern uint16_t BTA_GATT_GetLocalMTU(void); #ifdef __cplusplus } #endif
3,036
/* */ / #ifndef BTA_GAP_BT_CO_H #define BTA_GAP_BT_CO_H #if (BTC_GAP_BT_INCLUDED == TRUE) extern void btc_gap_bt_config_eir_cmpl_callback (uint8_t status, uint8_t eir_type_num, uint8_t *eir_type); #endif /// (BTC_GAP_BT_INCLUDED == TRUE) #endif /// BTA_GAP_BT_CO_H
3,037
/* */ #ifndef __BTA_HFP_DEFS_H__ #define __BTA_HFP_DEFS_H__ #include "stack/btm_api.h" #define BTA_HFP_CODEC_NONE BTM_SCO_CODEC_NONE #define BTA_HFP_CODEC_CVSD BTM_SCO_CODEC_CVSD /* CVSD */ #define BTA_HFP_CODEC_MSBC BTM_SCO_CODEC_MSBC /* mSBC */ typedef UINT16 tBTA_HFP_PEER...
3,038
/ / #ifndef BTA_AV_CO_H #define BTA_AV_CO_H #include "stack/l2c_api.h" #include "bta/bta_av_api.h" #if (BTA_AV_INCLUDED == TRUE) / ** Constants and data types / /* TRUE to use SCMS-T content protection */ #ifndef BTA_AV_CO_CP_SCMS_T #define BTA_AV_CO_CP_SCMS_T FALSE #endif /* the content protection IDs assig...
3,039
This function can be ** used by the phone to initialize audio paths or for other ** initialization purposes. ** ** ** Returns Stream codec and content protection capabilities info. ** / extern BOOLEAN bta_av_co_audio_init(UINT8 *p_codec_type, UINT8 *p_codec_info, ...
3,039
** ** ** Returns void. ** / extern void bta_av_co_video_disc_res(tBTA_AV_HNDL hndl, UINT8 num_seps, UINT8 num_snk, BD_ADDR addr); / ** ** Function bta_av_co_audio_getconfig ** ** Description This callout function is executed by AV to retrieve the ** ...
3,039
** ** ** Returns Stream codec and content protection configuration info. ** / extern UINT8 bta_av_co_video_getconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT8 *p_codec_info, UINT8 *p_sep_info_idx, UINT8 seid, UINT8 *p_num_p...
3,039
** ** ** Returns void ** / extern void bta_av_co_video_setconfig(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT8 *p_codec_info, UINT8 seid, BD_ADDR addr, UINT8 num_protect, UINT8 *p_protect_info); / ** ** Function bta_av_c...
3,039
** BTA-AV maintains the MTU of A2DP streams. ** When one stream is closed and no other audio stream is open, ** mtu is reported as 0. ** Otherwise, the MTU remains open is reported. ** ** Returns void ** / extern void bta_av_co_audio_close(tB...
3,039
** ** ** Returns void ** / extern void bta_av_co_video_start(tBTA_AV_HNDL hndl, tBTA_AV_CODEC codec_type, UINT8 *p_codec_info, BOOLEAN *p_no_rtp_hdr); / ** ** Function bta_av_co_audio_stop ** ** Description This function is called by AV when the audio streaming ...
3,039
** / extern void *bta_av_co_audio_src_data_path(tBTA_AV_CODEC codec_type, UINT32 *p_len, UINT32 *p_timestamp); / ** ** Function bta_av_co_video_src_data_path ** ** Description This function is called to get the next data buffer from ** the video codec. ** ** Returns NULL...
3,039
** ** Returns void ** / extern void bta_av_co_video_report_conn (BOOLEAN open, UINT8 avdt_handle); / ** ** Function bta_av_co_video_report_rr ** ** Description This function is called by AV when a Receiver Report is ** received ** ** Returns void ** / extern void bta_av...
3,039
/ / #ifndef BTA_AV_API_H #define BTA_AV_API_H #include "stack/avrc_api.h" #include "stack/avdt_api.h" #include "stack/a2d_api.h" #include "bta/bta_api.h" #if (BTA_AV_INCLUDED == TRUE) / ** Constants and data types / /* AV status values */ #define BTA_AV_SUCCESS 0 /* successful operation */ #define B...
3,040
263 baseline (profile 0) */ #define BTA_AV_CODEC_MPEG4 VDP_MEDIA_CT_MPEG4 /* MPEG-4 Visual Simple Profile */ #define BTA_AV_CODEC_H263_P3 VDP_MEDIA_CT_H263_P3 /* H.263 profile 3 */ #define BTA_AV_CODEC_H263_P8 VDP_MEDIA_CT_H263_P8 /* H.263 profile 8 */ #define BTA_AV_CODEC_VEND VDP_MEDIA_CT_...
3,040
*/ /* Max BTA event */ #define BTA_AV_MAX_EVT 25 /* function types for call-out functions */ typedef BOOLEAN (*tBTA_AV_CO_INIT) (UINT8 *p_codec_type, UINT8 *p_codec_info, UINT8 *p_num_protect, UINT8 *p_protect_info, UINT8 tsep); typedef void (*tBTA_AV_CO_DISC_RES) (tBTA_A...
3,040
*/ UINT8 app_id; /* ID associated with call to BTA_AvRegister() */ tBTA_AV_STATUS status; tBTA_AV_CO_FUNCTS *p_bta_av_cos; tBTA_AVRC_CO_FUNCTS *p_bta_avrc_cos; } tBTA_AV_REGISTER; /* data associated with BTA_AV_OPEN_EVT */ #define BTA_AV_EDR_2MBPS 0x01 #define BTA_AV_EDR_3MBPS ...
3,040
*/ UINT8 label; } tBTA_AV_REMOTE_CMD; /* data associated with BTA_AV_REMOTE_RSP_EVT */ typedef struct { UINT8 rc_handle; tBTA_AV_RC rc_id; tBTA_AV_STATE key_state; UINT8 len; UINT8 *p_data; tBTA_AV_CODE rsp_code; UINT8 label; ...
3,040
*/ } tBTA_AV_REJECT; /* data associated with BTA_AV_SET_DELAY_VALUE_EVT/BTA_AV_GET_DELAY_VALUE_EVT */ typedef struct { tBTA_AV_STATUS status; UINT16 delay_value; } tBTA_AV_DELAY; /* data associated with BTA_AV_SNK_PSC_CFG_EVT */ typedef struct { UINT16 psc_mask; } tBTA_AV_SNK_PSC_CFG; ...
3,040
3 group nevigation command */ BOOLEAN avrc_br; /* FALSE, does not support browsing channel */ UINT8 num_co_ids; /* company id count in p_meta_co_ids */ tBTA_AV_CODE rc_pass_rsp; /* the default response code for pass through commands */ const UINT32 *p_meta_co_ids;/* the metadata G...
3,040
This function must ** be called before other function in the AV API are ** called. ** ** Returns void ** / void BTA_AvEnable(tBTA_SEC sec_mask, tBTA_AV_FEAT features, tBTA_AV_CBACK *p_cback); / ** ** Function BTA_AvDisable ** ** Description Dis...
3,040
** When connection is open callback function is called ** with a BTA_AV_OPEN_EVT. ** ** Returns void ** / void BTA_AvOpen(BD_ADDR bd_addr, tBTA_AV_HNDL handle, BOOLEAN use_rc, tBTA_SEC sec_mask, UINT16 uuid); / ** ** Function BTA_AvClose ** ** Descrip...
3,040
** If suspend is TRUE, this function sends AVDT suspend signal ** to the connected peer(s). ** ** Returns void ** / void BTA_AvStop(BOOLEAN suspend); / ** ** Function BTA_AvReconfig ** ** Description Reconfigure the audio/video stream. ** If sus...
3,040
This function must ** be called if a BTA_AV_PROTECT_REQ_EVT is received. ** This function can only be used if AV is enabled with ** feature BTA_AV_FEAT_PROTECT. ** ** Returns void ** / void BTA_AvProtectRsp(tBTA_AV_HNDL hndl, UINT8 error_code, UINT8 *p_data,...
3,040
This ** function can only be used if AV is enabled with feature ** BTA_AV_FEAT_VENDOR. ** ** Returns void ** / void BTA_AvVendorCmd(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE cmd_code, UINT8 *p_data, UINT16 len); / ** ** Function BTA_AvVendorRsp...
3,040
The message contained ** in p_pkt can be composed with AVRC utility functions. ** This function can only be used if AV is enabled with feature ** BTA_AV_FEAT_METADATA. ** ** Returns void ** / void BTA_AvMetaRsp(UINT8 rc_handle, UINT8 label, tBTA_AV_CODE rsp_c...
3,040
/ / #ifndef BTA_SYS_INT_H #define BTA_SYS_INT_H / ** Constants and data types / / ** state table / /* SYS HW state */ enum { BTA_SYS_HW_OFF, BTA_SYS_HW_STARTING, BTA_SYS_HW_ON, BTA_SYS_HW_STOPPING }; typedef UINT8 tBTA_SYS_HW_STATE; /* Collision callback */ #define MAX_COLLISION_REG 5 typedef ...
3,041
= TRUE) tBTA_SYS_EIR_CBACK *eir_cb; /* add/remove UUID into EIR */ #endif #if (BTM_SSR_INCLUDED == TRUE) tBTA_SYS_SSR_CFG_CBACK *p_ssr_cb; #endif /* VS event handler */ tBTA_SYS_VS_EVT_HDLR *p_vs_evt_hdlr; } tBTA_SYS_CB; / ** Global variables / /* system manager control bl...
3,041
/ / #ifndef BTA_SDP_INT_H #define BTA_SDP_INT_H #include "bta/bta_sys.h" #include "bta/bta_api.h" #include "bta/bta_sdp_api.h" #if (SDP_INCLUDED == TRUE) / ** Constants / enum { /* these events are handled by the state machine */ BTA_SDP_API_ENABLE_EVT = BTA_SYS_EVT_START(BTA_ID_SDP), BTA_SDP_API_SEA...
3,043
/ / #ifndef BTA_AR_INT_H #define BTA_AR_INT_H #include "bta/bta_av_api.h" #if (BTA_AR_INCLUDED == TRUE) #ifndef BTA_AR_DEBUG #define BTA_AR_DEBUG FALSE #endif #define BTA_AR_AV_MASK 0x01 #define BTA_AR_AVK_MASK 0x02 /* data associated with BTA_AR */ typedef struct { tAVDT_CTRL_CBACK *p_av_conn_cba...
3,044
/ / #ifndef BTA_HH_INT_H #define BTA_HH_INT_H #include "bta/bta_sys.h" #include "bta/utl.h" #include "bta/bta_hh_api.h" //#if BTA_HH_LE_INCLUDED == TRUE #include "bta/bta_gatt_api.h" //#endif #if defined(BTA_HH_INCLUDED) && (BTA_HH_INCLUDED == TRUE) /* can be moved to bta/bta_api.h */ #define BTA_HH_MAX_RPT_CHARS ...
3,045
*/ UINT8 incoming_hid_handle; /* temporary handle for incoming connection? */ BOOLEAN opened; /* TRUE if device successfully opened HID connection */ tBTA_HH_PROTO_MODE mode; /* protocol mode */ tBTA_HH_PROTO_MODE new_mode; /* protocol mode */ ...
3,045
c */ extern tBTA_HH_CFG *p_bta_hh_cfg; / ** Function prototypes / extern BOOLEAN bta_hh_hdl_event(BT_HDR *p_msg); extern void bta_hh_sm_execute(tBTA_HH_DEV_CB *p_cb, UINT16 event, tBTA_HH_DATA *p_data); /* action functions */ extern void bta_hh_api_disc_act(tBTA_HH_DEV_CB *p_cb, tBTA_HH...
3,045
/ / ** Data types / #include "common/bt_target.h" #if (BTA_HF_INCLUDED == TRUE) /* ASCII character string of arguments to the AT command */ #define BTA_HF_CLIENT_AT_MAX_LEN 512 /* callback function executed when command is parsed */ typedef void (tBTA_AG_AT_CMD_CBACK)(void *p_user, UINT16 cmd, UINT8 arg_type...
3,046
UINT32 sdp_handle[BTA_JV_MAX_SDP_REC]; /* SDP records created */ UINT8 *p_sel_raw_data;/* the raw data of last service select */ tBTA_JV_DM_CBACK *p_dm_cback; #if BTA_JV_L2CAP_INCLUDED tBTA_JV_L2C_CB l2c_cb[BTA_JV_MAX_L2C_CONN]; /* index is GAP hand...
3,048
/ / #ifndef BTA_AG_AT_H #define BTA_AG_AT_H #include "stack/bt_types.h" #include "common/bt_target.h" / ** Constants / #if (BTA_AG_INCLUDED == TRUE) /* AT command argument capabilities */ #define BTA_AG_AT_NONE 0x01 /* no argument */ #define BTA_AG_AT_SET 0x02 /* set value */ #defi...
3,049
** ** ** Returns void ** / extern void bta_ag_at_init(tBTA_AG_AT_CB *p_cb); / ** ** Function bta_ag_at_reinit ** ** Description Re-initialize the AT command parser control block. This ** function resets the AT command parser state and frees ** any GKI buffer. *...
3,049
/* */ #ifndef __ESP_HF_AG_API_H__ #define __ESP_HF_AG_API_H__ #include "esp_err.h" #include "esp_bt_defs.h" #include "esp_hf_defs.h" #ifdef __cplusplus extern "C" { #endif /* features masks of HF AG */ #define ESP_HF_PEER_FEAT_3WAY 0x01 /* Three-way calling */ #define ESP_HF_PEER_FEAT_ECNR 0x02...
3,051
7+ */ #define ESP_HF_PEER_FEAT_HF_IND 0x400 /* HF Indicators */ #define ESP_HF_PEER_FEAT_ESCO_S4 0x800 /* eSCO S4 Setting Supported */ /* CHLD feature masks of HF AG */ #define ESP_HF_CHLD_FEAT_REL 0x01 /* 0 Release waiting call or held calls */ #define ESP_HF_CHLD_FEAT_REL_ACC ...
3,051
" to HFP Client. "CIEV" means “indicator events reporting", esp_err_t esp_hf_ag_ciev_report(esp_bd_addr_t remote_addr, esp_hf_ciev_report_type_t ind_type, int value); /** esp_err_t esp_hf_ag_cind_response(esp_bd_addr_t remote_addr, esp_hf_call_status_t call_state, ...
3,051
/* */ #ifndef __ESP_HIDD_API_H__ #define __ESP_HIDD_API_H__ #include "esp_bt_defs.h" #include "esp_err.h" #ifdef __cplusplus extern "C" { #endif /// subclass of hid device #define ESP_HID_CLASS_UNKNOWN (0x00<<2) /*!< unknown HID device subclass */ #define ESP_HID_CLASS_JOS (0x01<<2) ...
3,052
< successful */ ESP_HID_PAR_HANDSHAKE_RSP_NOT_READY = 1, /*!< not ready, device is too busy to accept data */ ESP_HID_PAR_HANDSHAKE_RSP_ERR_INVALID_REP_ID = 2, /*!< invalid report ID */ ESP_HID_PAR_HANDSHAKE_RSP_ERR_UNSUPPORTED_REQ = 3, /*!< device does not support the request */ ...
3,052
< special value for reports to be sent on interrupt channel, INPUT is assumed */ } esp_hidd_report_type_t; /** */ typedef enum { ESP_HIDD_CONN_STATE_CONNECTED, /*!< HID connection established */ ESP_HIDD_CONN_STATE_CONNECTING, /*!< connection to remote Bluetooth device */ ...
3,052
< report ID of Boot Protocol mouse report */ } esp_hidd_boot_report_id_t; /** */ enum { ESP_HIDD_BOOT_REPORT_SIZE_KEYBOARD = 9, /*!< report size of Boot Protocol keyboard report */ ESP_HIDD_BOOT_REPORT_SIZE_MOUSE = 4, /*!< report size of Boot Protocol mouse report */ }; /** */ typedef s...
3,052
< token rate in bytes per second, 0 indicates "don't care" */ uint32_t token_bucket_size; /*!< limit on the burstness of the application data */ uint32_t peak_bandwidth; /*!< bytes per second, value 0 indicates "don't care" */ uint32_t access_latency; ...
3,052
< When HID device connection to host closed, the event comes */ ESP_HIDD_SEND_REPORT_EVT, /*!< When HID device send report to lower layer, the event comes */ ESP_HIDD_REPORT_ERR_EVT, /*!< When HID device report handshanke error to lower layer, the event comes */ ESP_HIDD_GET_REPORT_EVT, /*!< When...
3,052
< general ESP HD error */ ESP_HIDD_NO_RES, /*!< out of system resources */ ESP_HIDD_BUSY, /*!< Temporarily can not handle this request. */ ESP_HIDD_NO_DATA, /*!< No data. */ ESP_HIDD_NEED_INIT, /*!< HIDD module shall init first */ ESP_HIDD_NEED_DEINIT, /*!< HIDD module sh...
3,052
< operation status */ bool in_use; /*!< indicate whether use virtual cable plug host address */ esp_bd_addr_t bd_addr; /*!< host address */ } register_app; /*!< HIDD callback param of ESP_HIDD_REGISTER_APP_EVT */ /** */ struct hidd_unregister_app_evt_param...
3,052
< connection status */ } close; /*!< HIDD callback param of ESP_HIDD_CLOSE_EVT */ /** */ struct hidd_send_report_evt_param { esp_hidd_status_t status; /*!< operation status */ uint8_t reason; /*!< lower la...
3,052
< report type */ uint8_t report_id; /*!< report id */ uint16_t buffer_size; /*!< buffer size */ } get_report; /*!< HIDD callback param of ESP_HIDD_GET_REPORT_EVT */ /** */ struct hidd_set_report_evt_param {...
3,052
< interrupt channel report id */ uint16_t len; /*!< interrupt channel report data length */ uint8_t *data; /*!< interrupt channel report data pointer */ } intr_data; /*!< HIDD callback param of ESP_HIDD_INTR_DATA_EVT */ /** */ struct hidd_vc_u...
3,052
/* */ #ifndef __ESP_A2DP_API_H__ #define __ESP_A2DP_API_H__ #include "esp_err.h" #include "esp_bt_defs.h" #ifdef __cplusplus extern "C" { #endif /** */ #define ESP_A2D_MCT_SBC (0) /*!< SBC */ #define ESP_A2D_MCT_M12 (0x01) /*!< MPEG-1, 2 Audio */ #define ESP_A2D_MCT_M24 ...
3,053