This moves GATT releated defines that are used by both Mesh Proxy Service and Mesh Provisioning Service implementations to a common header file. Signed-off-by: Pavel Vasilyev <pavel.vasilyev@nordicsemi.no>
32 lines
926 B
C
32 lines
926 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#if defined(CONFIG_BT_MESH_DEBUG_USE_ID_ADDR)
|
|
#define ADV_OPT_USE_IDENTITY BT_LE_ADV_OPT_USE_IDENTITY
|
|
#else
|
|
#define ADV_OPT_USE_IDENTITY 0
|
|
#endif
|
|
|
|
#define BT_MESH_ID_TYPE_NET 0x00
|
|
#define BT_MESH_ID_TYPE_NODE 0x01
|
|
#define BT_MESH_ID_TYPE_PRIV_NET 0x02
|
|
#define BT_MESH_ID_TYPE_PRIV_NODE 0x03
|
|
|
|
int bt_mesh_proxy_gatt_enable(void);
|
|
int bt_mesh_proxy_gatt_disable(void);
|
|
void bt_mesh_proxy_gatt_disconnect(void);
|
|
|
|
void bt_mesh_proxy_beacon_send(struct bt_mesh_subnet *sub);
|
|
|
|
int bt_mesh_proxy_adv_start(void);
|
|
|
|
void bt_mesh_proxy_identity_start(struct bt_mesh_subnet *sub, bool private);
|
|
void bt_mesh_proxy_identity_stop(struct bt_mesh_subnet *sub);
|
|
|
|
bool bt_mesh_proxy_relay(struct bt_mesh_adv *adv, uint16_t dst);
|
|
void bt_mesh_proxy_addr_add(struct net_buf_simple *buf, uint16_t addr);
|
|
uint8_t bt_mesh_proxy_srv_connected_cnt(void);
|