linruihao
c90f4fce9c
fix(bt/controller): Fixed some bugs in esp32 bt controller
...
1. fixed crash issue in coexist callback
2. fixed wrong LMP message send when expect peer device increase tx power to max
2024-03-15 19:08:51 +08:00
Jiang Jiang Jian
b2123cc7ff
Merge branch 'bugfix/sdspi_acmd41_arg_v5.1' into 'release/v5.1'
...
fix(sdmmc): fixes for card initialization (ACMD41) (v5.1)
See merge request espressif/esp-idf!29377
2024-03-15 13:44:39 +08:00
Jiang Jiang Jian
59d686ed3c
Merge branch 'bugfix/fix_maximum_value_of_config_rtc_clk_cal_cycles_bug_v5.1' into 'release/v5.1'
...
ESP All Chip: fixed the maximum value of config RTC_CLK_CAL_SYCLES bug (v5.1)
See merge request espressif/esp-idf!29649
2024-03-15 13:44:18 +08:00
Jiang Jiang Jian
8d3b3dfefa
Merge branch 'bugfix/fix_some_wifi_coexist_issue_v5.1' into 'release/v5.1'
...
fix(coex): fix some wifi coexist issue v5.1
See merge request espressif/esp-idf!29660
2024-03-15 12:27:58 +08:00
Jiang Jiang Jian
9eb22e688c
Merge branch 'bugfix/fix_fastmem_slowmem_lost_data_bug_v5.1' into 'release/v5.1'
...
[C3/S3]Fix sleep fast_mem & slow_mem may lost bug (v5.1)
See merge request espressif/esp-idf!29641
2024-03-15 11:30:44 +08:00
Jiang Jiang Jian
4885b77b47
Merge branch 'bugfix/fix_s3_bbpll_cali_fail_bug_v5.1' into 'release/v5.1'
...
fix: fix s3 bbpll calibration fail bug (v5.1)
See merge request espressif/esp-idf!29645
2024-03-15 11:30:22 +08:00
liuning
583c8665f4
feat(coex): support to scan long time on channel, fix coexist sync issue
2024-03-15 10:49:18 +08:00
liuning
dfebf6cbbe
feat(coex): improve Wi-Fi connecting compatibility at coexistence
2024-03-15 10:49:18 +08:00
liuning
cb0fd9010b
fix(clk): clear all lpclk source at clk init
2024-03-15 10:49:18 +08:00
Jiang Jiang Jian
3e526ef774
Merge branch 'bugfix/supplicant_disconnect_process_v5.1' into 'release/v5.1'
...
esp_wifi: Fix bug in esp_wifi_deauthenticate_internal() & wpa_supplicant: Add parameter to configure reason code of deauth frame (Backport v5.1)
See merge request espressif/esp-idf!29622
2024-03-14 22:08:25 +08:00
Jiang Jiang Jian
e1eaa7b5d3
Merge branch 'feat/move_ag_cb_malloc_to_btc_v5.1' into 'release/v5.1'
...
feat(bt/bluedroid): Moved the memory allocation of HF AG control blocks to BTC module (v5.1)
See merge request espressif/esp-idf!29632
2024-03-14 21:10:26 +08:00
hongshuqing
d50b336afd
fix: fix_maximum_value_of_config_rtc_clk_cal_cycle_bug
2024-03-14 16:12:17 +08:00
hongshuqing
3b7a934498
fix: fix s3 bbpll cali fail bug
2024-03-14 15:45:37 +08:00
chaijie@espressif.com
9680d3fa81
fix: fix sleep fast_mem & slow_mem may lost bug
2024-03-14 15:03:49 +08:00
Jiang Jiang Jian
7be8274b3a
Merge branch 'fix/support_gcm_soft_fallback_for_non_aes_ciphers_v5.1' into 'release/v5.1'
...
fix(mbedtls/gcm): Add support for software fallback for non-AES ciphers in a GCM operation (v5.1)
See merge request espressif/esp-idf!29251
2024-03-14 14:02:11 +08:00
Sarvesh Bodakhe
344c5d1fce
fix(wifi): fix bug in 'esp_wifi_deauthenticate_internal' and other improvements
2024-03-14 11:24:27 +05:30
Sarvesh Bodakhe
e5059dffec
fix(wpa_supplicant): Add some bugfixes in wpa_supplicant
...
1) Add parameter to configure reason code of deauth frame
2) Add logs to indicate MIC failure 4-Way-Handshake
3) Process RSNXE capabilities only if AP advertises them
2024-03-14 11:23:05 +05:30
Jiang Jiang Jian
f21038666a
Merge branch 'update/littlefs_demo_example_v5.1_v2' into 'release/v5.1'
...
LittleFS demo example added & Update/littlefs demo example (v5.1) v2
See merge request espressif/esp-idf!29450
2024-03-14 13:49:53 +08:00
Ivan Grokhotkov
7c20d54953
fix(sdmmc): extend the maximum number of retries of ACMD41
...
According to the application note in SD Card Physical Specification:
> The host shall set ACMD41 timeout more than 1 second to abort repeat
of issuing ACMD41 when the card does not indicate ready. The timeout
count starts from the first ACMD41 which is set voltage window
in the argument.
Previously, the timeout was exactly one second, and this caused
certain larger-capacity cards to "time out", because they couldn't
finish initialization process in time.
2024-03-14 13:49:23 +08:00
Ivan Grokhotkov
7ff2886c84
fix(sdmmc): use correct argument for ACMD41 in SPI mode
...
ACMD41 argument is different between SD mode and SPI mode.
In SPI mode, the only non-zero bit may be the HCS bit. Unlike the SD
mode, the bits reflecting the host's OCR should be zero.
Previously, we used to set these bits the same way as for the SD mode.
This has caused certain cards to fail initializing, apparently their
controllers have checked the ACMD41 argument more strictly and refused
to finish initialization, resulting in an error such as
sdmmc_common: sdmmc_init_ocr: send_op_cond (1) returned 0x107
(Note that this error may have other causes than the one fixed in
this commit. For example, if the card doesn't have a sufficient and
stable power supply, it may also fail to complete the internal
initialization process, and will never clear the busy flag in R1
response.)
Closes https://github.com/espressif/esp-idf/issues/6686
Closes https://github.com/espressif/esp-idf/issues/10542
2024-03-14 13:49:23 +08:00
Jiang Jiang Jian
5059908d08
Merge branch 'fix/fatfs_sdmmc_triming_v5.1' into 'release/v5.1'
...
fix(storage/fatfs): check whether sdcard supports trimming (v5.1)
See merge request espressif/esp-idf!28336
2024-03-14 13:47:00 +08:00
Jin Cheng
0fcd6a7c73
feat(bt/bluedroid): Moved the memory allocation of HF AG control blocks to BTC module
2024-03-14 10:53:11 +08:00
Jiang Jiang Jian
8b48f33304
Merge branch 'bugfix/reduce_memory_footprint_of_sae_pk_v5.1' into 'release/v5.1'
...
fix(wifi): Reduce memory footprint for scan when SAE-PK is enabled (v5.1)
See merge request espressif/esp-idf!27654
2024-03-14 10:52:50 +08:00
morris
96888a9ad6
Merge branch 'bugfix/flash_mxic_chip_v5.1' into 'release/v5.1'
...
fix(spi_flash): Fix MXIC chip flash size detected wrong (backport v5.1)
See merge request espressif/esp-idf!29611
2024-03-14 10:46:13 +08:00
morris
374e54ca78
Merge branch 'bugfix/workaround_reset_eof_counter_c3_v5.1' into 'release/v5.1'
...
fix(adc): workaround to fix adc continuous get less results on c3 (v5.1)
See merge request espressif/esp-idf!29137
2024-03-14 10:44:23 +08:00
Martin Vychodil
9706e5a274
Merge branch 'bugfix/nvs_lock_initi_and_multipage_blob_v5.1' into 'release/v5.1'
...
Bugfix/nvs Improved handling of BLOB during unreliable power environment and concurrent data access scenarios (v5.1)
See merge request espressif/esp-idf!29321
2024-03-13 23:10:02 +08:00
Aditya Patwardhan
b884b3788e
Merge branch 'bugfix/update_disabling_hmac_jtag_method_v5.1' into 'release/v5.1'
...
fix(esp_hw_support): update hmac toggle method due to discrepency in ROM code (v5.1)
See merge request espressif/esp-idf!29531
2024-03-13 20:20:52 +08:00
Jiang Jiang Jian
db2a037329
Merge branch 'bugfix/hpm_dc_default_disabled_v5.1' into 'release/v5.1'
...
spi_flash: fixed issue that enabling HPM-DC by default may cause app unable to restart (v5.1)
See merge request espressif/esp-idf!26656
2024-03-13 19:50:59 +08:00
Jiang Jiang Jian
9bada8c1da
Merge branch 'save_twdt_to_coredump_v5.1' into 'release/v5.1'
...
feat(coredump): save twdt panic output to coredump elf file (v5.1)
See merge request espressif/esp-idf!29509
2024-03-13 19:50:17 +08:00
Cao Sen Miao
4af88f7458
fix(spi_flash): Fix MXIC chip flash size detected wrong,
...
Closes https://github.com/espressif/esp-idf/issues/12222
2024-03-13 18:51:36 +08:00
Marius Vikhammer
663d42f5be
Merge branch 'feat/newlib-add-aligned-alloc_v5.1' into 'release/v5.1'
...
feat(newlib): Add definition of aligned_alloc to heap.c (backport v5.1)
See merge request espressif/esp-idf!29471
2024-03-13 17:52:51 +08:00
Marius Vikhammer
a8a178a480
Merge branch 'docs/esp_event_doc_fix_v5.1' into 'release/v5.1'
...
docs(esp_event): Fixed mistake in API docs (v5.1)
See merge request espressif/esp-idf!29564
2024-03-13 17:51:50 +08:00
Marius Vikhammer
c045e98092
Merge branch 'contrib/github_pr_12785_v5.1' into 'release/v5.1'
...
Provide ulp_adc_deinit() API to fix ADC1 handle leakage (GitHub PR) (v5.1)
See merge request espressif/esp-idf!28456
2024-03-13 17:31:19 +08:00
harshal.patil
b1586cc041
fix(tcp_transport): Fix coverity report regarding tcp_transport
2024-03-13 11:25:12 +05:30
Sarvesh Bodakhe
1d8b484cce
fix(esp_wifi): Reduce memory footprint for scan when SAE-PK is enabled
...
Use bss information cached in wifi library to get RSNXE capabilities
instead of storing bss information again in supplicant and accessing it.
2024-03-13 10:48:07 +05:30
Rahul Tank
5710425216
Merge branch 'bugfix/reconnect_host_based_v5.1' into 'release/v5.1'
...
fix(nimble): Added ble_host_rpa_enabled flag for address resoultion for esp32 (v5.1)
See merge request espressif/esp-idf!29570
2024-03-13 12:55:07 +08:00
Island
9fe40d424d
Merge branch 'bugfix/ble_update_lib_20240306_v5.1' into 'release/v5.1'
...
update lib on release/v5.1
See merge request espressif/esp-idf!29436
2024-03-13 10:18:33 +08:00
radek.tandler
c3f335817b
fix(nvs): Fixed Page::findItem performance degradation caused by wrong condition before hash map use
...
The condition enabling use of hash map when page is searched for Item was modified
to correct the bug introduced by commit addressing delete of any BLOB_INDEX Items.
This correction returns the performance of findItem to the state before previous change.
2024-03-12 16:27:36 +01:00
radek.tandler
2acac6b848
fix(nvs): Adopted CMakeLists for host test if IDF v5.1
2024-03-12 16:27:36 +01:00
radek.tandler
0d3bbed981
fix(nvs): Improved lockig mechanism for initialization phase
2024-03-12 16:27:36 +01:00
radek.tandler
a1750801f6
fix(nvs): eraseMultiPageBlob to robustly delete all related BLOB_DATA records and respect VER_ANY
2024-03-12 16:27:36 +01:00
radek.tandler
66b2a50066
fix(nvs): corrected findItem to return BLOB_DATA when chunkIndex = CHUNK_ANY
2024-03-12 16:27:36 +01:00
radek.tandler
9a9ef9d843
fix(nvs): added check and erase of mismatched BLOB_DATA on init
2024-03-12 16:27:36 +01:00
Ivan Grokhotkov
ee836d236f
fix(nvs): prevent out of bounds write if blob data is inconsistent
2024-03-12 16:27:36 +01:00
Darshan Dobariya
86ec111525
fix(nimble): Added ble_host_rpa_enabled flag for address resoultion for esp32
2024-03-12 20:53:43 +05:30
Rahul Tank
a4916eb8a6
Merge branch 'bugfix/fix_strict_prototype_hid_v5.1' into 'release/v5.1'
...
fix(nimble): Address compilation errors when strict-prototype is enabled (v5.1)
See merge request espressif/esp-idf!29541
2024-03-12 23:00:59 +08:00
sonika.rathi
0bec1976b1
feat(example/storage/littlefs): add LittleFS demo example
2024-03-12 20:58:14 +08:00
muhaidong
ec16fa7dd5
fix(wifi): fix some amsdu issue
...
1. fix qos encapsulated eapol issue
2. fix qos eapol eb data length issue
3. eapol arp and dhcp add flag PP_F_PER_PKT_RATE
4. fix lmac_stop_hw_txq issue
5. limit the number of sub amsdu
6. fix recycle cache sub amsdu eb issue
2024-03-12 19:01:09 +08:00
muhaidong
4ae8d2179d
fix(wifi): fix lmac_stop_hw_txq issue
2024-03-12 19:01:09 +08:00
muhaidong
0aadc3ec2a
fix(wifi): fix some wifi issues
...
1. fix qos encapsulated eapol issue
2. fixed dhcp offer and dhcp ack data rates
2024-03-12 19:01:09 +08:00