1 /** 2 * @file testing.h 3 * @brief Internal API for Bluetooth testing. 4 */ 5 6 /* 7 * Copyright (c) 2017 Intel Corporation 8 * 9 * SPDX-License-Identifier: Apache-2.0 10 */ 11 12 #include "mesh/glue.h" 13 #include "mesh/access.h" 14 15 void bt_test_mesh_model_bound(u16_t addr, struct bt_mesh_model *model, 16 u16_t key_idx); 17 void bt_test_mesh_model_unbound(u16_t addr, struct bt_mesh_model *model, 18 u16_t key_idx); 19 void bt_test_mesh_prov_invalid_bearer(u8_t opcode); 20 void bt_test_mesh_net_recv(u8_t ttl, u8_t ctl, u16_t src, u16_t dst, 21 const void *payload, size_t payload_len); 22 void bt_test_mesh_trans_incomp_timer_exp(void); 23 void bt_test_print_credentials(void); 24