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
|
|
|
|
*/
|
2018-09-15 01:43:44 +08:00
|
|
|
#ifndef ZEPHYR_INCLUDE_BLUETOOTH_MESH_H_
|
|
|
|
#define ZEPHYR_INCLUDE_BLUETOOTH_MESH_H_
|
2017-06-16 17:30:54 +08:00
|
|
|
|
|
|
|
#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>
|
2019-11-04 23:14:07 +08:00
|
|
|
#include <bluetooth/mesh/cdb.h>
|
2017-06-16 17:30:54 +08:00
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#endif /* ZEPHYR_INCLUDE_BLUETOOTH_MESH_H_ */
|