a59eafbc9d
* fix sdmmc config * Fix warnings in EEPROM from @Curclamas * remove leftover TAG in EEPROM * Initial add of @stickbreaker i2c * Add log_n * fix warnings when log is off * i2c code clean up and reorganization * add flags to interrupt allocator * fix sdmmc config * Fix warnings in EEPROM from @Curclamas * remove leftover TAG in EEPROM * fix errors with latest IDF * fix debug optimization (#1365) incorrect optimization for debugging tick markers. * Fix some missing BT header * Change BTSerial log calls * Update BLE lib * Arduino-ESP32 release management scripted (#1515) * Calculate an absolute path for a custom partitions table (#1452) * * Arduino-ESP32 release management scripted (ready-to-merge) * * secure env for espressif/arduino-esp32 * * build tests enabled * gitter webhook enabled * * gitter room link fixed * better comment * * filepaths fixed * BT Serial adjustments * * don't run sketch builds & tests for tagged builds * Return false from WiFi.hostByName() if hostname is not resolved * Free BT Memory when BT is not used * WIFI_MODE_NULL is not supported anymore * Select some key examples to build with PlatformIO to save some time * Update BLE lib * Fixed BLE lib * Major WiFi overhaul - auto reconnect on connection loss now works - moved to event groups - some code clean up and procedure optimizations - new methods to get a more elaborate system ststus * Add cmake tests to travis * Add initial AsyncUDP * Add NetBIOS lib and fix CMake includes * Add Initial WebServer * Fix WebServer and examples * travis not quiting on build fail * Try different travis build * Update IDF to aaf1239 * Fix WPS Example * fix script permission and add some fail tests to sketch builder * Add missing space in WiFiClient::write(Stream &stream)
116 lines
4.2 KiB
C
116 lines
4.2 KiB
C
// Copyright 2018 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
|
|
/******************************************************************************
|
|
*
|
|
* This is the interface file for hf client call-out functions.
|
|
*
|
|
******************************************************************************/
|
|
#ifndef BTA_HF_CLIENT_CO_H
|
|
#define BTA_HF_CLIENT_CO_H
|
|
|
|
#include "common/bt_target.h"
|
|
#include "bta/bta_hf_client_api.h"
|
|
|
|
#if (BTA_HF_INCLUDED == TRUE)
|
|
|
|
#if (BTM_SCO_HCI_INCLUDED == TRUE)
|
|
/*******************************************************************************
|
|
**
|
|
** Function bta_hf_client_co_audio_state
|
|
**
|
|
** Description This function is called by the HF CLIENT before the audio connection
|
|
** is brought up, after it comes up, and after it goes down.
|
|
**
|
|
** Parameters handle - handle of the AG instance
|
|
** state - Audio state
|
|
** codec - if WBS support is compiled in, codec to going to be used is provided
|
|
** and when in SCO_STATE_SETUP, BTM_I2SPCMConfig() must be called with
|
|
** the correct platform parameters.
|
|
** in the other states codec type should not be ignored
|
|
**
|
|
** Returns void
|
|
**
|
|
*******************************************************************************/
|
|
void bta_hf_client_co_audio_state(UINT16 handle, UINT8 state, tBTA_HFP_PEER_CODEC codec);
|
|
|
|
|
|
/*******************************************************************************
|
|
**
|
|
** Function bta_hf_client_sco_co_init
|
|
**
|
|
** Description This function can be used by the phone to initialize audio
|
|
** codec or for other initialization purposes before SCO connection
|
|
** is opened.
|
|
**
|
|
**
|
|
** Returns Void.
|
|
**
|
|
*******************************************************************************/
|
|
tBTA_HFP_SCO_ROUTE_TYPE bta_hf_client_sco_co_init(UINT32 rx_bw, UINT32 tx_bw,
|
|
tBTA_HFP_CODEC_INFO *p_codec_info, UINT8 app_id);
|
|
|
|
|
|
/*******************************************************************************
|
|
**
|
|
** Function bta_hf_client_sco_co_open
|
|
**
|
|
** Description This function is executed when a SCO connection is open.
|
|
**
|
|
**
|
|
** Returns void
|
|
**
|
|
*******************************************************************************/
|
|
void bta_hf_client_sco_co_open(UINT16 handle, UINT8 pkt_size, UINT16 event);
|
|
|
|
/*******************************************************************************
|
|
**
|
|
** Function bta_hf_client_sco_co_close
|
|
**
|
|
** Description This function is called when a SCO connection is closed
|
|
**
|
|
**
|
|
** Returns void
|
|
**
|
|
*******************************************************************************/
|
|
void bta_hf_client_sco_co_close(void);
|
|
|
|
/*******************************************************************************
|
|
**
|
|
** Function bta_hf_client_sco_co_out_data
|
|
**
|
|
** Description This function is called to send SCO data over HCI.
|
|
**
|
|
** Returns number of bytes got from application
|
|
**
|
|
*******************************************************************************/
|
|
uint32_t bta_hf_client_sco_co_out_data(uint8_t *p_buf, uint32_t sz);
|
|
|
|
/*******************************************************************************
|
|
**
|
|
** Function bta_hf_client_sco_co_in_data
|
|
**
|
|
** Description This function is called to send incoming SCO data to application.
|
|
**
|
|
** Returns void
|
|
**
|
|
*******************************************************************************/
|
|
extern void bta_hf_client_sco_co_in_data(BT_HDR *p_buf, tBTM_SCO_DATA_FLAG status);
|
|
|
|
#endif /* #if (BTM_SCO_HCI_INCLUDED == TRUE) */
|
|
|
|
#endif /* #if (BTA_HF_INCLUDED == TRUE) */
|
|
#endif /* BTA_HF_CLIENT_CO_H */
|