Select one of the symbols to view example projects that use it.
 
Outline
#include <string.h>
#include "osi/allocator.h"
#include "esp_bt_main.h"
#include "config/stack_config.h"
stack_config_env_tag
s_stack_config_env
get_ssp_enabled()
bluedriod_config_init(esp_bluedroid_config_t *)
bluedriod_config_deinit()
bluedriod_config_get()
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/config/stack_config.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include <string.h> #include "osi/allocator.h" #include "esp_bt_main.h" #include "config/stack_config.h" struct stack_config_env_tag { esp_bluedroid_config_t cfg; struct bluedroid_config interface; }{ ... }; static struct stack_config_env_tag *s_stack_config_env = NULL; static bool get_ssp_enabled(void) { assert(s_stack_config_env); esp_bluedroid_config_t *cfg = &s_stack_config_env->cfg; return cfg->ssp_en; }{ ... } bt_status_t bluedriod_config_init(esp_bluedroid_config_t *cfg) { s_stack_config_env = osi_calloc(sizeof(struct stack_config_env_tag)); if (!s_stack_config_env) { return BT_STATUS_NOMEM; }{...} memcpy(&s_stack_config_env->cfg, cfg, sizeof(esp_bluedroid_config_t)); struct bluedroid_config *interface = &s_stack_config_env->interface; interface->get_ssp_enabled = get_ssp_enabled; return BT_STATUS_SUCCESS; }{ ... } void bluedriod_config_deinit(void) { if (s_stack_config_env) { osi_free(s_stack_config_env); s_stack_config_env = NULL; }{...} }{ ... } const struct bluedroid_config *bluedriod_config_get(void) { assert(s_stack_config_env); return &s_stack_config_env->interface; }{ ... }
Details