mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/fix_some_wifi_coexist_issue_v4.4' into 'release/v4.4'
bugfix/fix some wifi coexist issue v4.4 See merge request espressif/esp-idf!29990
This commit is contained in:
commit
9dce0a4ac7
@ -6,7 +6,7 @@
|
||||
esf_buf_alloc = 0x400015bc;
|
||||
esf_buf_alloc_dynamic = 0x400015c0;
|
||||
esf_buf_recycle = 0x400015c4;
|
||||
hal_mac_tx_set_ppdu = 0x400015d4;
|
||||
/*hal_mac_tx_set_ppdu = 0x400015d4;*/
|
||||
ic_mac_deinit = 0x400015dc;
|
||||
lmacDiscardMSDU = 0x400015f4;
|
||||
lmacSetTxFrame = 0x40001628;
|
||||
@ -37,7 +37,7 @@ ieee80211_encap_esfbuf = 0x4000185c;
|
||||
/*sta_input = 0x40001870;*/
|
||||
ieee80211_crypto_decap = 0x4000189c;
|
||||
ieee80211_decap = 0x400018a0;
|
||||
coex_core_timer_idx_get = 0x400018d0;
|
||||
/*coex_core_timer_idx_get = 0x400018d0;*/
|
||||
rom1_chip_i2c_readReg = 0x40001924;
|
||||
rom1_chip_i2c_writeReg = 0x40001928;
|
||||
rom_index_to_txbbgain = 0x40001964;
|
||||
|
@ -1591,7 +1591,7 @@ ppTask = 0x40001720;
|
||||
ppTxPkt = 0x40001724;
|
||||
ppTxProtoProc = 0x40001728;
|
||||
ppTxqUpdateBitmap = 0x4000172c;
|
||||
pp_coex_tx_request = 0x40001730;
|
||||
/*pp_coex_tx_request = 0x40001730;*/
|
||||
pp_hdrsize = 0x40001734;
|
||||
pp_post = 0x40001738;
|
||||
pp_process_hmac_waiting_txq = 0x4000173c;
|
||||
@ -1760,12 +1760,12 @@ esp_coex_rom_version_get = 0x400018ac;
|
||||
coex_bt_release = 0x400018b0;
|
||||
coex_bt_request = 0x400018b4;
|
||||
coex_core_ble_conn_dyn_prio_get = 0x400018b8;
|
||||
coex_core_event_duration_get = 0x400018bc;
|
||||
/*coex_core_event_duration_get = 0x400018bc;*/
|
||||
coex_core_pti_get = 0x400018c0;
|
||||
coex_core_release = 0x400018c4;
|
||||
coex_core_request = 0x400018c8;
|
||||
coex_core_status_get = 0x400018cc;
|
||||
coex_core_timer_idx_get = 0x400018d0;
|
||||
/*coex_core_timer_idx_get = 0x400018d0;*/
|
||||
coex_event_duration_get = 0x400018d4;
|
||||
coex_hw_timer_disable = 0x400018d8;
|
||||
coex_hw_timer_enable = 0x400018dc;
|
||||
|
@ -1894,7 +1894,7 @@ ppSubFromAMPDU = 0x40005694;
|
||||
/* ppTxPkt = 0x400056ac;*/
|
||||
ppTxProtoProc = 0x400056b8;
|
||||
ppTxqUpdateBitmap = 0x400056c4;
|
||||
pp_coex_tx_request = 0x400056d0;
|
||||
/*pp_coex_tx_request = 0x400056d0;*/
|
||||
pp_hdrsize = 0x400056dc;
|
||||
pp_post = 0x400056e8;
|
||||
pp_process_hmac_waiting_txq = 0x400056f4;
|
||||
@ -2069,12 +2069,12 @@ esp_coex_rom_version_get = 0x40005b68;
|
||||
coex_bt_release = 0x40005b74;
|
||||
coex_bt_request = 0x40005b80;
|
||||
coex_core_ble_conn_dyn_prio_get = 0x40005b8c;
|
||||
coex_core_event_duration_get = 0x40005b98;
|
||||
/* coex_core_event_duration_get = 0x40005b98; */
|
||||
coex_core_pti_get = 0x40005ba4;
|
||||
coex_core_release = 0x40005bb0;
|
||||
coex_core_request = 0x40005bbc;
|
||||
coex_core_status_get = 0x40005bc8;
|
||||
coex_core_timer_idx_get = 0x40005bd4;
|
||||
/*coex_core_timer_idx_get = 0x40005bd4;*/
|
||||
coex_event_duration_get = 0x40005be0;
|
||||
coex_hw_timer_disable = 0x40005bec;
|
||||
coex_hw_timer_enable = 0x40005bf8;
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 499341f53904937d10186c938bc7d3c73e1eacfe
|
||||
Subproject commit faf5a16d72f47618a414f0a0aefd2b26838c2534
|
5
examples/mesh/manual_networking/partitions.csv
Normal file
5
examples/mesh/manual_networking/partitions.csv
Normal file
@ -0,0 +1,5 @@
|
||||
# Name, Type, SubType, Offset, Size, Flags
|
||||
# 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, 1200K,
|
|
5
examples/mesh/manual_networking/sdkconfig.defaults
Normal file
5
examples/mesh/manual_networking/sdkconfig.defaults
Normal file
@ -0,0 +1,5 @@
|
||||
CONFIG_PARTITION_TABLE_CUSTOM=y
|
||||
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
|
||||
CONFIG_PARTITION_TABLE_FILENAME="partitions.csv"
|
||||
CONFIG_PARTITION_TABLE_OFFSET=0x8000
|
||||
CONFIG_PARTITION_TABLE_MD5=y
|
Loading…
x
Reference in New Issue
Block a user