Skip to content

Commit

Permalink
Merge branch 'bugfix/fix_some_wifi_bugs_241024_v5.3' into 'release/v5.3'
Browse files Browse the repository at this point in the history
fix(wifi): fix some wifi bugs 241024 v5.3

See merge request espressif/esp-idf!34420
  • Loading branch information
Jiang Jiang Jian committed Oct 24, 2024
2 parents 5f5feed + 2b894fc commit a0f798c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions components/esp_phy/src/phy_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,8 @@ void esp_phy_disable(esp_phy_modem_t modem)
phy_digital_regs_store();
#endif
#if SOC_PM_SUPPORT_PMU_MODEM_STATE && CONFIG_ESP_WIFI_ENHANCED_LIGHT_SLEEP
extern void pm_mac_modem_clear_rf_power_state(void);
pm_mac_modem_clear_rf_power_state();
if (sleep_modem_wifi_modem_state_enabled()) {
sleep_modem_wifi_do_phy_retention(false);
} else
Expand Down
2 changes: 1 addition & 1 deletion components/esp_rom/esp32c2/ld/esp32c2.rom.ld
Original file line number Diff line number Diff line change
Expand Up @@ -1457,7 +1457,7 @@ ppGetTxframe = 0x40001bf8;
ppMapTxQueue = 0x40001bfc;
ppProcTxSecFrame = 0x40001c00;
ppProcessRxPktHdr = 0x40001c04;
ppProcessTxQ = 0x40001c08;
/*ppProcessTxQ = 0x40001c08;*/
ppRecordBarRRC = 0x40001c0c;
lmacRequestTxopQueue = 0x40001c10;
lmacReleaseTxopQueue = 0x40001c14;
Expand Down
2 changes: 1 addition & 1 deletion components/esp_rom/esp32c3/ld/esp32c3.rom.ld
Original file line number Diff line number Diff line change
Expand Up @@ -1571,7 +1571,7 @@ ppEnqueueTxDone = 0x400016cc;
ppGetTxQFirstAvail_Locked = 0x400016d0;
ppGetTxframe = 0x400016d4;
ppProcessRxPktHdr = 0x400016e0;
ppProcessTxQ = 0x400016e4;
/*ppProcessTxQ = 0x400016e4;*/
ppRecordBarRRC = 0x400016e8;
lmacRequestTxopQueue = 0x400016ec;
lmacReleaseTxopQueue = 0x400016f0;
Expand Down
2 changes: 1 addition & 1 deletion components/esp_rom/esp32c5/mp/esp32c5/ld/esp32c5.rom.pp.ld
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ ppGetTxframe = 0x40000e60;
ppMapTxQueue = 0x40000e64;
ppProcTxSecFrame = 0x40000e68;
ppProcessRxPktHdr = 0x40000e6c;
ppProcessTxQ = 0x40000e70;
/*ppProcessTxQ = 0x40000e70;*/
ppRecordBarRRC = 0x40000e74;
ppRecycleAmpdu = 0x40000e78;
ppRecycleRxPkt = 0x40000e7c;
Expand Down
2 changes: 1 addition & 1 deletion components/esp_rom/esp32c61/ld/esp32c61.rom.pp.ld
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ ppGetTxframe = 0x40000c14;
ppMapTxQueue = 0x40000c18;
ppProcTxSecFrame = 0x40000c1c;
ppProcessRxPktHdr = 0x40000c20;
ppProcessTxQ = 0x40000c24;
/*ppProcessTxQ = 0x40000c24;*/
ppRecordBarRRC = 0x40000c28;
ppRecycleAmpdu = 0x40000c2c;
ppRecycleRxPkt = 0x40000c30;
Expand Down
2 changes: 1 addition & 1 deletion components/esp_rom/esp32s3/ld/esp32s3.rom.ld
Original file line number Diff line number Diff line change
Expand Up @@ -1851,7 +1851,7 @@ ppGetTxQFirstAvail_Locked = 0x400055b0;
ppGetTxframe = 0x400055bc;
/*ppMapTxQueue = 0x400055c8;*/
ppProcessRxPktHdr = 0x400055e0;
ppProcessTxQ = 0x400055ec;
/*ppProcessTxQ = 0x400055ec;*/
ppRecordBarRRC = 0x400055f8;
lmacRequestTxopQueue = 0x40005604;
lmacReleaseTxopQueue = 0x40005610;
Expand Down
2 changes: 1 addition & 1 deletion components/esp_wifi/lib

0 comments on commit a0f798c

Please sign in to comment.