esp32c6: support wifi 6

This commit is contained in:
yuexia
2022-12-20 22:07:09 +08:00
committed by lvshisheng
parent 58b7fc1d8b
commit 032ebd76cb
24 changed files with 3164 additions and 91 deletions

View File

@@ -0,0 +1,26 @@
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#if CONFIG_ENABLE_WIFI_TX_STATS || CONFIG_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