2017-06-16 17:30:54 +08:00
|
|
|
/** @file
|
|
|
|
* @brief Bluetooth Mesh Profile APIs.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
#ifndef __BT_MESH_H
|
|
|
|
#define __BT_MESH_H
|
|
|
|
|
|
|
|
#include <zephyr/types.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <net/buf.h>
|
|
|
|
|
2017-11-12 19:33:26 +08:00
|
|
|
#include <bluetooth/mesh/access.h>
|
|
|
|
#include <bluetooth/mesh/main.h>
|
|
|
|
#include <bluetooth/mesh/cfg_srv.h>
|
|
|
|
#include <bluetooth/mesh/health_srv.h>
|
2017-11-12 19:48:55 +08:00
|
|
|
#include <bluetooth/mesh/cfg_cli.h>
|
2017-11-22 14:49:52 +08:00
|
|
|
#include <bluetooth/mesh/health_cli.h>
|
2017-11-12 19:33:26 +08:00
|
|
|
#include <bluetooth/mesh/proxy.h>
|
2017-06-16 17:30:54 +08:00
|
|
|
|
|
|
|
#endif /* __BT_MESH_H */
|