mirror of
https://github.com/espressif/esp-idf
synced 2025-03-31 20:00:09 -04:00
1. move btif and A2DP source code from project directory to bluetooth directory; 2. some updates of audio source code;
15 lines
284 B
C
15 lines
284 B
C
#ifndef __ESP_BT_STACK_MANAGER_H__
|
|
#define __ESP_BT_STACK_MANAGER_H__
|
|
|
|
#include "esp_err.h"
|
|
|
|
esp_err_t esp_bt_init_stack(void);
|
|
|
|
esp_err_t esp_bt_deinit_stack(void);
|
|
|
|
esp_err_t esp_bt_enable_stack(void);
|
|
|
|
esp_err_t esp_bt_disable_stack(void);
|
|
|
|
#endif /* __ESP_BT_STACK_MANAGER_H__ */
|