mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-18 18:40:13 +00:00
23 lines
444 B
C
23 lines
444 B
C
/*
|
|
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "bt_common.h"
|
|
|
|
struct bluedroid_config {
|
|
bool (*get_ssp_enabled)(void);
|
|
bool (*get_sc_enabled) (void);
|
|
};
|
|
|
|
bt_status_t bluedroid_config_init(esp_bluedroid_config_t *cfg);
|
|
|
|
void bluedroid_config_deinit(void);
|
|
|
|
const struct bluedroid_config *bluedroid_config_get(void);
|