Select one of the symbols to view example projects that use it.
 
Outline
#define _MODEL_COMMON_H_
#include "mesh/types.h"
bt_mesh_sqrt(float);
bt_mesh_ceil(float);
bt_mesh_log2(float);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/models/common/include/mesh/model_common.h
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2018 Vikrant More * SPDX-FileContributor: 2018-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _MODEL_COMMON_H_ #define _MODEL_COMMON_H_ #include "mesh/types.h" #ifdef __cplusplus extern "C" { #endif float bt_mesh_sqrt(float square); int32_t bt_mesh_ceil(float num); float bt_mesh_log2(float num); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _MODEL_COMMON_H_ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.