mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
24 lines
527 B
C
24 lines
527 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __BTC_MANAGE_H__
|
|
#define __BTC_MANAGE_H__
|
|
|
|
#include "btc/btc_task.h"
|
|
|
|
#if BTC_DYNAMIC_MEMORY == FALSE
|
|
extern void *btc_profile_cb_tab[BTC_PID_NUM];
|
|
#else
|
|
extern void **btc_profile_cb_tab;
|
|
#endif
|
|
/* reset gatt callback table */
|
|
void esp_profile_cb_reset(void);
|
|
|
|
int btc_profile_cb_set(btc_pid_t profile_id, void *cb);
|
|
void *btc_profile_cb_get(btc_pid_t profile_id);
|
|
|
|
#endif /* __BTC_MANAGE_H__ */
|