zephyr/subsys/bluetooth/mesh/pb_gatt.h
Lingao Meng 2ead5725b1 Bluetooth: Mesh: Add Provisioner Over PB-GATT Support
Add support provisioner over pb-gatt.

Signed-off-by: Lingao Meng <menglingao@xiaomi.com>
2022-02-24 13:51:09 -08:00

15 lines
458 B
C

/*
* Copyright (c) 2017 Intel Corporation
* Copyright (c) 2021 Nordic Semiconductor ASA
* Copyright (c) 2022 Xiaomi Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
int bt_mesh_pb_gatt_start(struct bt_conn *conn);
int bt_mesh_pb_gatt_close(struct bt_conn *conn);
int bt_mesh_pb_gatt_recv(struct bt_conn *conn, struct net_buf_simple *buf);
int bt_mesh_pb_gatt_cli_open(struct bt_conn *conn);
int bt_mesh_pb_gatt_cli_start(struct bt_conn *conn);