2023-07-31 15:32:07 +05:30
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
2020-04-29 17:24:01 +08:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
|
|
|
|
|
|
#if CONFIG_GATTC_ENABLE
|
|
|
|
|
#include "esp_hidh_gattc.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if CONFIG_BLUEDROID_ENABLED
|
|
|
|
|
#include "esp_hidh_bluedroid.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-07-31 15:32:07 +05:30
|
|
|
#if CONFIG_BT_NIMBLE_ENABLED
|
|
|
|
|
#include "esp_hidh_nimble.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-04-29 17:24:01 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|