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>
30 lines
760 B
C
30 lines
760 B
C
/** @file
|
|
* @brief Bluetooth mesh Profile APIs.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef ZEPHYR_INCLUDE_BLUETOOTH_MESH_H_
|
|
#define ZEPHYR_INCLUDE_BLUETOOTH_MESH_H_
|
|
|
|
#include <zephyr/types.h>
|
|
#include <stddef.h>
|
|
#include <net/buf.h>
|
|
|
|
#include <bluetooth/mesh/msg.h>
|
|
#include <bluetooth/mesh/access.h>
|
|
#include <bluetooth/mesh/main.h>
|
|
#include <bluetooth/mesh/cfg.h>
|
|
#include <bluetooth/mesh/cfg_srv.h>
|
|
#include <bluetooth/mesh/health_srv.h>
|
|
#include <bluetooth/mesh/cfg_cli.h>
|
|
#include <bluetooth/mesh/health_cli.h>
|
|
#include <bluetooth/mesh/proxy.h>
|
|
#include <bluetooth/mesh/heartbeat.h>
|
|
#include <bluetooth/mesh/cdb.h>
|
|
#include <bluetooth/mesh/cfg.h>
|
|
|
|
#endif /* ZEPHYR_INCLUDE_BLUETOOTH_MESH_H_ */
|