mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
27 lines
513 B
C
27 lines
513 B
C
/*
|
|
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
#if CONFIG_ESP_WIFI_ENABLE_WIFI_TX_STATS || CONFIG_ESP_WIFI_ENABLE_WIFI_RX_STATS
|
|
|
|
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
|