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>
22 lines
296 B
C
22 lines
296 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
#include <bluetooth/mesh.h>
|
|
|
|
#define LOG_MODULE_NAME bt_mesh_test
|
|
#include "common/log.h"
|
|
|
|
#include "mesh.h"
|
|
#include "test.h"
|
|
|
|
int bt_mesh_test(void)
|
|
{
|
|
return 0;
|
|
}
|