2016-11-24 17:58:26 +00: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.
|
|
|
|
|
2016-11-16 03:28:41 +00:00
|
|
|
#ifndef __ESP_BT_MAIN_H__
|
|
|
|
#define __ESP_BT_MAIN_H__
|
|
|
|
|
|
|
|
#include "esp_err.h"
|
|
|
|
|
2016-12-08 06:26:19 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-12-01 10:58:54 +00:00
|
|
|
/**
|
|
|
|
* @brief Enable bluetooth, must after esp_init_bluetooth()
|
|
|
|
*
|
2016-12-01 11:58:52 +00:00
|
|
|
* @return
|
|
|
|
* - ESP_OK : Succeed
|
2016-12-01 10:58:54 +00:00
|
|
|
* - Other : Failed
|
|
|
|
*/
|
2016-11-16 08:26:02 +00:00
|
|
|
esp_err_t esp_enable_bluetooth(void);
|
2016-11-16 03:28:41 +00:00
|
|
|
|
2016-12-01 10:58:54 +00:00
|
|
|
/**
|
|
|
|
* @brief Disable bluetooth, must prior to esp_deinit_bluetooth()
|
|
|
|
*
|
2016-12-01 11:58:52 +00:00
|
|
|
* @return
|
|
|
|
* - ESP_OK : Succeed
|
2016-12-01 10:58:54 +00:00
|
|
|
* - Other : Failed
|
|
|
|
*/
|
2016-11-16 03:28:41 +00:00
|
|
|
esp_err_t esp_disable_bluetooth(void);
|
|
|
|
|
2016-12-01 10:58:54 +00:00
|
|
|
/**
|
|
|
|
* @brief Init and alloc the resource for bluetooth, must be prior to every bluetooth stuff
|
|
|
|
*
|
2016-12-01 11:58:52 +00:00
|
|
|
* @return
|
|
|
|
* - ESP_OK : Succeed
|
2016-12-01 10:58:54 +00:00
|
|
|
* - Other : Failed
|
|
|
|
*/
|
2016-11-16 08:26:02 +00:00
|
|
|
esp_err_t esp_init_bluetooth(void);
|
2016-11-16 03:28:41 +00:00
|
|
|
|
2016-12-01 10:58:54 +00:00
|
|
|
/**
|
|
|
|
* @brief Deinit and free the resource for bluetooth, must be after every bluetooth stuff
|
|
|
|
*
|
2016-12-01 11:58:52 +00:00
|
|
|
* @return
|
|
|
|
* - ESP_OK : Succeed
|
2016-12-01 10:58:54 +00:00
|
|
|
* - Other : Failed
|
|
|
|
*/
|
2016-11-16 08:26:02 +00:00
|
|
|
esp_err_t esp_deinit_bluetooth(void);
|
2016-11-16 03:28:41 +00:00
|
|
|
|
2016-12-08 06:26:19 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2016-11-16 03:28:41 +00:00
|
|
|
|
|
|
|
#endif /* __ESP_BT_MAIN_H__ */
|