27 lines
529 B
C
27 lines
529 B
C
|
/* Bluetooth Mesh */
|
||
|
|
||
|
/*
|
||
|
* Copyright (c) 2017 Intel Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#include <zephyr.h>
|
||
|
#include <string.h>
|
||
|
#include <errno.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <zephyr/types.h>
|
||
|
#include <misc/util.h>
|
||
|
#include <misc/byteorder.h>
|
||
|
|
||
|
#include <bluetooth/bluetooth.h>
|
||
|
#include <bluetooth/conn.h>
|
||
|
#include <bluetooth/mesh.h>
|
||
|
|
||
|
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_MESH_DEBUG_MODEL)
|
||
|
#include "common/log.h"
|
||
|
|
||
|
const struct bt_mesh_model_op bt_mesh_cfg_cli_op[] = {
|
||
|
BT_MESH_MODEL_OP_END,
|
||
|
};
|