15 lines
422 B
C
15 lines
422 B
C
|
/*
|
||
|
* Copyright (c) 2023 Nordic Semiconductor ASA
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#ifndef ZEPHYR_SUBSYS_BLUETOOTH_MESH_STATISTIC_H_
|
||
|
#define ZEPHYR_SUBSYS_BLUETOOTH_MESH_STATISTIC_H_
|
||
|
|
||
|
void bt_mesh_stat_planned_count(struct bt_mesh_adv *adv);
|
||
|
void bt_mesh_stat_succeeded_count(struct bt_mesh_adv *adv);
|
||
|
void bt_mesh_stat_rx(enum bt_mesh_net_if net_if);
|
||
|
|
||
|
#endif /* ZEPHYR_SUBSYS_BLUETOOTH_MESH_STATISTIC_H_ */
|