• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /** @file
2  *  @brief Bluetooth Mesh Porting APIs.
3  */
4 
5 /*
6  * Copyright (c) 2017 Intel Corporation
7  *
8  * SPDX-License-Identifier: Apache-2.0
9  */
10 #ifndef __BT_MESH_PORTING_H
11 #define __BT_MESH_PORTING_H
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 void mesh_adv_thread(void *args);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 /**
24  * @}
25  */
26 
27 #endif /* __BT_MESH_PORTING_H */
28