Merge branch 'bugfix/fix_some_wifi_bugs_250512' into 'master'

bugfix/fix_some_wifi_bugs_250512

See merge request espressif/esp-idf!39047
This commit is contained in:
Jiang Jiang Jian
2025-05-14 21:31:38 +08:00
4 changed files with 6 additions and 5 deletions

View File

@ -288,7 +288,7 @@ esp_test_clr_tx_statistics = 0x40001020;
esp_test_get_tx_statistics = 0x40001024;
esp_test_clr_tx_tb_statistics = 0x40001028;
esp_test_get_tx_tb_statistics = 0x4000102c;
esp_test_tx_process_complete = 0x40001030;
/*esp_test_tx_process_complete = 0x40001030;*/
esp_test_tx_process_txq_state = 0x40001034;
esp_test_tx_enab_statistics = 0x40001038;
esp_test_tx_tb_complete = 0x4000103c;

View File

@ -350,7 +350,8 @@ typedef struct {
uint32_t tx_muedca_enable; /* count TX times within mu-timer working */
uint32_t collision;
uint32_t timeout;
} esp_test_tx_statistics_t; //136 bytes
uint32_t tx_error_a0;
} esp_test_tx_statistics_t; //140 bytes
typedef struct {
uint32_t complete_suc_tb;

View File

@ -2,5 +2,5 @@
# Note: if you have increased the bootloader size, make sure to update the offsets to avoid overlap
nvs, data, nvs, 0x9000, 0x6000,
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 1M,
storage, data, spiffs, , 0xF0000,
factory, app, factory, 0x10000, 0x110000,
storage, data, spiffs, , 0xE0000,

1 # Name, Type, SubType, Offset, Size, Flags
2 # Note: if you have increased the bootloader size, make sure to update the offsets to avoid overlap
3 nvs, data, nvs, 0x9000, 0x6000,
4 phy_init, data, phy, 0xf000, 0x1000,
5 factory, app, factory, 0x10000, 1M, factory, app, factory, 0x10000, 0x110000,
6 storage, data, spiffs, , 0xF0000, storage, data, spiffs, , 0xE0000,