2023-07-31 06:02:07 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-04-29 05:24:01 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "esp_hidh.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2023-07-31 06:02:07 -04:00
|
|
|
#if CONFIG_GATTC_ENABLE || CONFIG_BT_NIMBLE_ENABLED
|
2020-04-29 05:24:01 -04:00
|
|
|
|
|
|
|
esp_err_t esp_ble_hidh_init(const esp_hidh_config_t *config);
|
|
|
|
esp_err_t esp_ble_hidh_deinit(void);
|
|
|
|
|
2023-07-31 06:02:07 -04:00
|
|
|
#if CONFIG_BT_NIMBLE_ENABLED
|
|
|
|
esp_hidh_dev_t *esp_ble_hidh_dev_open(uint8_t *bda, uint8_t address_type);
|
|
|
|
#else
|
2020-04-29 05:24:01 -04:00
|
|
|
esp_hidh_dev_t *esp_ble_hidh_dev_open(esp_bd_addr_t bda, esp_ble_addr_type_t address_type);
|
2023-07-31 06:02:07 -04:00
|
|
|
#endif
|
2020-04-29 05:24:01 -04:00
|
|
|
|
|
|
|
#endif /* CONFIG_GATTC_ENABLE */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|