Skip to content

Commit 30c3427

Browse files
author
Jiang Jiang Jian
committed
Merge branch 'bugfix/fix_double_wifi_active_time' into 'master'
fix(wifi): fix double max active time Closes WIFI-6770 See merge request espressif/esp-idf!35786
2 parents 35cdecb + 595c9f3 commit 30c3427

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

components/esp_coex/src/coexist_debug_diagram.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ void diagram_bind_io_to_evt(void) {
1616
coex_bind_io_to_evt(1, 16);
1717
#else
1818
coex_bind_io_to_evt(0, 0);
19-
coex_bind_io_to_evt(1, 1);
19+
coex_bind_io_to_evt(1, 4);
2020
#endif
2121
/* Bind IO to Wi-Fi evt */
2222
wifi_bind_io_to_evt(2, 9);
@@ -35,7 +35,7 @@ void diagram_bind_io_to_evt(void) {
3535
coex_bind_io_to_evt(1, 16);
3636
#else
3737
coex_bind_io_to_evt(0, 0);
38-
coex_bind_io_to_evt(1, 1);
38+
coex_bind_io_to_evt(1, 4);
3939
#endif
4040
/* Bind IO to Wi-Fi evt */
4141
wifi_bind_io_to_evt(2, 9);

components/esp_rom/esp32c2/ld/esp32c2.rom.eco4.ld

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ wDev_AppendRxBlocks = 0x40001cdc;
4141
wDev_ProcessFiq = 0x40001d08;
4242
wDev_ProcessRxSucData = 0x40001d0c;
4343
ppProcTxDone = 0x40001d1c;
44-
pm_tx_data_done_process = 0x40001d20;
44+
/*pm_tx_data_done_process = 0x40001d20;*/
4545
ppMapWaitTxq = 0x40001d28;
4646
lmacDiscardFrameExchangeSequence = 0x40001d70;
4747
lmacDisableTransmit = 0x40001d74;
@@ -61,7 +61,7 @@ pm_stop = 0x40001e38;
6161
hal_set_sta_tbtt = 0x40001e4c;
6262
//pm_update_next_tbtt = 0x40001e50;
6363
pm_set_sleep_type = 0x40001e54;
64-
pm_tx_null_data_done_process = 0x40001eb0;
64+
/*pm_tx_null_data_done_process = 0x40001eb0;*/
6565
//pm_tx_data_process = 0x40001eb4;
6666
/*pm_attach = 0x40001eb8;*/
6767
/*pm_coex_schm_process = 0x40001ebc;*/

components/esp_rom/esp32c2/ld/esp32c2.rom.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ pm_local_tsf_process = 0x40001b8c;
531531
pm_set_beacon_filter = 0x40001b90;
532532
pm_is_in_wifi_slice_threshold = 0x40001b94;
533533
pm_is_waked = 0x40001b98;
534-
pm_keep_alive = 0x40001b9c;
534+
/*pm_keep_alive = 0x40001b9c;*/
535535
/* pm_on_beacon_rx = 0x40001ba0; */
536536
pm_on_data_rx = 0x40001ba4;
537537
pm_on_tbtt = 0x40001ba8;

components/esp_rom/esp32c3/ld/esp32c3.rom.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ pm_local_tsf_process = 0x40001668;
720720
pm_set_beacon_filter = 0x4000166c;
721721
pm_is_in_wifi_slice_threshold = 0x40001670;
722722
pm_is_waked = 0x40001674;
723-
pm_keep_alive = 0x40001678;
723+
/*pm_keep_alive = 0x40001678;*/
724724
/* pm_on_beacon_rx = 0x4000167c; */
725725
pm_on_data_rx = 0x40001680;
726726
pm_on_tbtt = 0x40001684;

components/esp_rom/esp32s3/ld/esp32s3.rom.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -974,7 +974,7 @@ pm_local_tsf_process = 0x40005478;
974974
pm_set_beacon_filter = 0x40005484;
975975
pm_is_in_wifi_slice_threshold = 0x40005490;
976976
pm_is_waked = 0x4000549c;
977-
pm_keep_alive = 0x400054a8;
977+
/*pm_keep_alive = 0x400054a8;*/
978978
/* pm_on_beacon_rx = 0x400054b4; */
979979
pm_on_data_rx = 0x400054c0;
980980
pm_on_tbtt = 0x400054cc;

0 commit comments

Comments
 (0)