mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-26 02:16:03 +00:00
We've already got GATT services in subsys/bluetooth/services so subsys/bluetooth/mesh is a more natural place. Aditionally this aims to fix the Kconfig dependencies to be able to use mesh together with BT_CUSTOM (i.e. a custom, potentially non-HCI, host stack). Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
24 lines
319 B
C
24 lines
319 B
C
/* Bluetooth Mesh */
|
|
|
|
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
#include <bluetooth/mesh.h>
|
|
|
|
#define LOG_MODULE_NAME bt_mesh_test
|
|
#include "common/log.h"
|
|
|
|
#include "mesh.h"
|
|
#include "test.h"
|
|
|
|
int bt_mesh_test(void)
|
|
{
|
|
return 0;
|
|
}
|