Moves mesh feature configuration to a separate module, deprecating the bt_mesh_cfg_srv structure. The initial values for the features should now be enabled through KConfig, where new config entries have been added for each feature. This removes the upward dependency on the config server from the core stack, and makes the config server a pure frontend for the configuration states, as all spec mandated behavior around the feature states is now encapsulated. Signed-off-by: Trond Einar Snekvik <Trond.Einar.Snekvik@nordicsemi.no>
29 lines
728 B
C
29 lines
728 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.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_ */
|