2017-12-28 03:26:50 +08:00
|
|
|
/**
|
|
|
|
* @file testing.h
|
|
|
|
* @brief Internal API for Bluetooth testing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2018-09-18 18:40:43 +08:00
|
|
|
#if defined(CONFIG_BT_MESH)
|
2020-05-28 00:26:57 +08:00
|
|
|
void bt_test_mesh_net_recv(uint8_t ttl, uint8_t ctl, uint16_t src, uint16_t dst,
|
2018-01-02 18:07:45 +08:00
|
|
|
const void *payload, size_t payload_len);
|
2020-05-28 00:26:57 +08:00
|
|
|
void bt_test_mesh_model_bound(uint16_t addr, struct bt_mesh_model *model,
|
|
|
|
uint16_t key_idx);
|
|
|
|
void bt_test_mesh_model_unbound(uint16_t addr, struct bt_mesh_model *model,
|
|
|
|
uint16_t key_idx);
|
|
|
|
void bt_test_mesh_prov_invalid_bearer(uint8_t opcode);
|
2018-01-02 18:26:08 +08:00
|
|
|
void bt_test_mesh_trans_incomp_timer_exp(void);
|
2018-09-18 18:40:43 +08:00
|
|
|
#endif /* CONFIG_BT_MESH */
|