2022-12-20 09:07:09 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2022-12-28 23:58:02 -05:00
|
|
|
#if CONFIG_ESP_WIFI_ENABLE_WIFI_TX_STATS || CONFIG_ESP_WIFI_ENABLE_WIFI_RX_STATS
|
2022-12-20 09:07:09 -05:00
|
|
|
|
|
|
|
int wifi_cmd_get_tx_statistics(int argc, char **argv);
|
|
|
|
int wifi_cmd_clr_tx_statistics(int argc, char **argv);
|
|
|
|
|
|
|
|
int wifi_cmd_get_rx_statistics(int argc, char **argv);
|
|
|
|
int wifi_cmd_clr_rx_statistics(int argc, char **argv);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|