OVMS3-idf/components/bt/bluedroid/api/include/esp_gap_bt_api.h

61 lines
1.8 KiB
C

// 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 __ESP_GAP_BT_API_H__
#define __ESP_GAP_BT_API_H__
#include <stdint.h>
#include "esp_err.h"
#include "esp_bt_defs.h"
#ifdef __cplusplus
extern "C" {
#endif
/// Discoverability and Connectability mode
typedef enum {
BT_SCAN_MODE_NONE = 0, /*!< Neither discoverable nor connectable */
BT_SCAN_MODE_CONNECTABLE, /*!< Connectable but not discoverable */
BT_SCAN_MODE_CONNECTABLE_DISCOVERABLE /*!< both discoverable and connectaable */
} bt_scan_mode_t;
/**
* @brief Set discoverability and connectability mode for legacy bluetooth
*
* @param[in] mode: one of the enums of bt_scan_mode_t
*
* @return
* - ESP_OK : Succeed
* - ESP_ERR_INVALID_ARG: if argument invalid
*/
esp_err_t esp_bt_gap_set_scan_mode(bt_scan_mode_t mode);
/**
* @brief Set bluetooth device name
*
* @param[in] name: device name to be set, will be truncated if more than 32 characters
*
* @return
* - ESP_OK : Succeed
* - ESP_ERR_INVALID_ARG: if name is NULL pointer or empty string
*/
esp_err_t esp_bt_gap_set_device_name(const char *name);
#ifdef __cplusplus
}
#endif
#endif /* __ESP_GAP_BT_API_H__ */