123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /** @file
- * @brief Configuration Server Model APIs.
- */
- /*
- * Copyright (c) 2017 Intel Corporation
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef ZEPHYR_INCLUDE_BLUETOOTH_MESH_CFG_SRV_H_
- #define ZEPHYR_INCLUDE_BLUETOOTH_MESH_CFG_SRV_H_
- /**
- * @brief Configuration Server Model
- * @defgroup bt_mesh_cfg_srv Configuration Server Model
- * @ingroup bt_mesh
- * @{
- */
- #ifdef __cplusplus
- extern "C" {
- #endif
- /** @def BT_MESH_MODEL_CFG_SRV
- *
- * @brief Generic Configuration Server model composition data entry.
- */
- #define BT_MESH_MODEL_CFG_SRV \
- BT_MESH_MODEL_CB(BT_MESH_MODEL_ID_CFG_SRV, bt_mesh_cfg_srv_op, NULL, \
- NULL, &bt_mesh_cfg_srv_cb)
- /** @cond INTERNAL_HIDDEN */
- extern const struct bt_mesh_model_op bt_mesh_cfg_srv_op[];
- extern const struct bt_mesh_model_cb bt_mesh_cfg_srv_cb;
- /** @endcond */
- #ifdef __cplusplus
- }
- #endif
- /**
- * @}
- */
- #endif /* ZEPHYR_INCLUDE_BLUETOOTH_MESH_CFG_SRV_H_ */
|