mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-14 03:15:58 +00:00
Refactor the handling of network nodes and their keys into a separate Mesh Configuration Database (CDB). This, not only creates a separation of the local node and the other nodes, but also makes it possible to implement functions to manage the whole, or at least parts of the mesh network. Signed-off-by: Tobias Svehagen <tobias.svehagen@gmail.com>
27 lines
626 B
C
27 lines
626 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/access.h>
|
|
#include <bluetooth/mesh/main.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/cdb.h>
|
|
|
|
#endif /* ZEPHYR_INCLUDE_BLUETOOTH_MESH_H_ */
|