feat(phy): update 11ax rate for cert test

This commit is contained in:
muhaidong
2025-06-09 20:39:48 +08:00
parent ac6150f4a6
commit f0d424de76
3 changed files with 23 additions and 2 deletions

View File

@@ -12,6 +12,7 @@ extern "C" {
#include <stdint.h>
#include <stdbool.h>
#include "sdkconfig.h"
typedef enum {
//11b
@@ -202,7 +203,7 @@ void esp_phy_bt_tx_tone(uint32_t start, uint32_t chan, uint32_t power);
void esp_phy_get_rx_result(esp_phy_rx_result_t *rx_result);
#if CONFIG_SOC_WIFI_HE_SUPPORT
void esp_phy_11ax_tx_set(uint32_t he_format, uint32_t ru_index);
void esp_phy_11ax_tx_set(uint32_t he_format, uint32_t pe, uint32_t giltf_num, uint32_t ru_index);
#endif
#ifdef __cplusplus

View File

@@ -248,6 +248,8 @@ static int esp_phy_wifiscwout_func(int argc, char **argv)
static int esp_phy_wifi_11ax_tx_set_func(int argc, char **argv)
{
uint32_t he_format;
uint32_t pe;
uint32_t giltf_num;
uint32_t ru_index = 0;
int nerrors = arg_parse(argc, argv, (void **) &phy_wifi_11ax_tx_set_args);
if (nerrors != 0) {
@@ -262,6 +264,20 @@ static int esp_phy_wifi_11ax_tx_set_func(int argc, char **argv)
return 1;
}
if (phy_wifi_11ax_tx_set_args.pe->count == 1) {
pe = phy_wifi_11ax_tx_set_args.pe->ival[0];
} else {
pe = 16;
ESP_LOGW(TAG, "Default pe is 16");
}
if (phy_wifi_11ax_tx_set_args.giltf_num->count == 1) {
giltf_num = phy_wifi_11ax_tx_set_args.giltf_num->ival[0];
} else {
giltf_num = 1;
ESP_LOGW(TAG, "Default giltf_num is 1");
}
if (he_format > 3) {
ESP_LOGE(TAG, "HE format 1:HESU, 2:HEER, 3:HETB, 0:exit 11ax mode");
return 1;
@@ -276,7 +292,7 @@ static int esp_phy_wifi_11ax_tx_set_func(int argc, char **argv)
}
}
esp_phy_11ax_tx_set(he_format, ru_index);
esp_phy_11ax_tx_set(he_format, pe, giltf_num, ru_index);
return 0;
}
#endif//CONFIG_SOC_WIFI_HE_SUPPORT
@@ -585,6 +601,8 @@ void register_phy_cmd(void)
#if CONFIG_SOC_WIFI_HE_SUPPORT
phy_wifi_11ax_tx_set_args.he_format = arg_int0("f", "he_format" , "<he_format>" , "1:HESU, 2:HEER, 3:HETB, 0:exit 11ax mode");
phy_wifi_11ax_tx_set_args.pe = arg_int0("p", "pe" , "<pe>" , "pe=0/8/16, default 16");
phy_wifi_11ax_tx_set_args.giltf_num = arg_int0("g", "giltf_num" , "<giltf_num>" , "giltf_num=1/2/3, default 1");
phy_wifi_11ax_tx_set_args.ru_index = arg_int0("i", "ru_index" , "<ru_index>" , "0~8, 37~40, 53~54, 61,\
ru_index is only effective in HETB mode. In other modes, this parameter can be omitted or set to 0, with the default value being 0");
phy_wifi_11ax_tx_set_args.end = arg_end(1);

View File

@@ -57,6 +57,8 @@ typedef struct {
#if CONFIG_SOC_WIFI_HE_SUPPORT
typedef struct {
struct arg_int *he_format;
struct arg_int *pe;
struct arg_int *giltf_num;
struct arg_int *ru_index;
struct arg_end *end;
} phy_wifi_11ax_tx_set_t;