arduino-esp32/tools/sdk/include/bt/bt.h

67 lines
2.1 KiB
C
Raw Normal View History

2016-10-06 13:21:30 +02:00
// Copyright 2015-2016 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.
#ifndef __BT_H__
#define __BT_H__
#include <stdint.h>
#include <stdbool.h>
2016-10-06 13:21:30 +02:00
#include "esp_err.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Initialize BT controller
*
* This function should be called only once, before any other BT functions are called.
*/
2016-11-13 16:23:44 +01:00
void bt_controller_init(void);
2016-10-06 13:21:30 +02:00
2016-11-13 16:23:44 +01:00
/** @brief vhci_host_callback
2016-10-06 13:21:30 +02:00
* used for vhci call host function to notify what host need to do
*/
typedef struct vhci_host_callback {
2016-11-18 17:32:28 +01:00
void (*notify_host_send_available)(void); /*!< callback used to notify that the host can send packet to controller */
int (*notify_host_recv)(uint8_t *data, uint16_t len); /*!< callback used to notify that the controller has a packet to send to the host*/
2016-10-06 13:21:30 +02:00
} vhci_host_callback_t;
2016-11-13 16:23:44 +01:00
/** @brief API_vhci_host_check_send_available
2016-10-06 13:21:30 +02:00
* used for check actively if the host can send packet to controller or not.
2016-11-13 16:23:44 +01:00
* @return true for ready to send, false means cannot send packet
2016-10-06 13:21:30 +02:00
*/
bool API_vhci_host_check_send_available(void);
2016-11-13 16:23:44 +01:00
/** @brief API_vhci_host_send_packet
2016-10-06 13:21:30 +02:00
* host send packet to controller
2016-11-13 16:23:44 +01:00
* @param data the packet point
*,@param len the packet length
2016-10-06 13:21:30 +02:00
*/
void API_vhci_host_send_packet(uint8_t *data, uint16_t len);
2016-11-13 16:23:44 +01:00
/** @brief API_vhci_host_register_callback
2016-10-06 13:21:30 +02:00
* register the vhci referece callback, the call back
* struct defined by vhci_host_callback structure.
2016-11-13 16:23:44 +01:00
* @param callback vhci_host_callback type variable
2016-10-06 13:21:30 +02:00
*/
void API_vhci_host_register_callback(const vhci_host_callback_t *callback);
#ifdef __cplusplus
}
#endif
#endif /* __BT_H__ */