Align the capitalization of the term "Bluetooth Mesh" to Bluetooth mesh" in the documentation. This is done to to match the new updated naming convention done in Bluetooth SIG. In the upcoming spec versions, it its used "Bluetooth mesh" with the lower case convention. Signed-off-by: Ingar Kulbrandstad <ingar.kulbrandstad@nordicsemi.no>
15 lines
217 B
C
15 lines
217 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#if defined(CONFIG_BT_MESH_SELF_TEST)
|
|
int bt_mesh_test(void);
|
|
#else
|
|
static inline int bt_mesh_test(void)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|