Guillaume Souchere
dbc4572814
heap: fix linker issues and remove spi flash dependencies
2023-02-16 08:48:00 +00:00
Guillaume Souchere
9b51759e8f
feat: remove tlsf_fls and tlsf_ffs from linker as they are inlined.
2023-02-16 08:48:00 +00:00
Guillaume Souchere
f5e3585a9c
tools: update list of references to not include symbold used by __assert_func calls
...
On xtensa architecture, the call to __assert_func uses a reference to __func__ that can
sometimes be placed in flash. Since the __asert_func can be called from functions in IRAM
the check_callgraph script can report an error when checking for invalid calls from IRAM
to flash sections. However, the __asert_func prevents this scenario at runtime so the
check_callgraph script reports a 'flas positive' situation. For this reasson, all references
to __func__$x found prior to a call to __assert_func are droped in the parsing of the rtl files.
2023-02-16 08:48:00 +00:00
Guillaume Souchere
598e77e287
heap: add check for usage of flash content from iram
...
this commits:
- adds build-time test to check that no call to flash regions are done from IRAM functions
- resolves problems related to IRAM function using content in flash memory
- update heap_caps_alloc_failed to use a default function name in DRAM
when necessary instead of creating a function name variable in DRAM for
each call of heap_caps_alloc_failed. This allows to save some extra bytes
in RAM.
2023-02-16 08:48:00 +00:00
Guillaume Souchere
5f735a22ec
heap: add documentation about the function placement in IRAM and its usage in ISR
...
This commits adds a internal.md file in the heap directory to clarify the idea behind
which functions is placed in IRAM or in flash.
A section in mem_alloc.rst documentation is added to specify which functions from the
heap component API can be used in interrupt handlers.
2023-02-16 08:48:00 +00:00
Guillaume Souchere
8700bdc156
heap: add selective placement of function in IRAM
...
This commit aims to place in the IRAM section only the functions that
are relevent for performance instead of placing the entire content of
multi_heap.c, mullti_heap_poisoning.c and tlsf.c in the IRAM.
2023-02-16 08:48:00 +00:00
Guillaume Souchere
7ce0620d32
heap: Update host tests after incorporation of the new TLSF implementation
2023-02-16 08:48:00 +00:00
Guillaume Souchere
48b0000e22
heap: update the calculation of fl index max and use bitfield in control_t
...
The calculation of fl index max is changed to always be the smallest
number that includes the size of the registered memory.
The control_construct() function now checks for minimum size as the control structure
parameters are calculated.
There is no longer a minimum configuration for fl index max so the tlsf_config
enum is striped down to remove unecessary compile time values.
the tlsf_size() function will fail if no tlsf pointer is passed as parameter since there
is no way to calculate a default tlsf size anymore.
bitfields are now used in control_t when possible which reduces the size of the structure
from 56 bytes to 36 bytes.
2023-02-16 08:48:00 +00:00
Guillaume Souchere
9f6b549dea
Revert "tlsf control's structure should remain opaque"
...
This reverts commit 7010314c4a
.
2023-02-16 08:48:00 +00:00
Philippe
6a3f3e9421
add host test with multiple heap size
2023-02-16 08:48:00 +00:00
Philippe
30bd908f97
clarify parameter usage in tslf_create
2023-02-16 08:48:00 +00:00
Philippe
a7b9e7a8bd
tlsf control's structure should remain opaque
2023-02-16 08:48:00 +00:00
Philippe
e45d350b97
dynamic control block per heap
2023-02-16 08:48:00 +00:00
harshal.patil
4e77c32afc
esptool_py: Added a sector-pad option for bootloader image
...
When SECURE BOOT V2 is enabled and CONFIG_SECURE_BOOT_SIGNED_BINARIES
is not set, sector-pad the bootloader image, which is required for an
external PKCS#11 interface to generate a signature.
esptool_py: Update submodule to release/v3 (4bc311767b7c6df41def6f95a50f87b1c9406cbd)
2023-02-15 16:10:31 +05:30
jingli
805db259b7
sleep: fix gpio wakeup not working properly in some cases
...
Before this fix, when we call esp_pm_configure after gpio_wakeup_enable,
the configuration of GPIO in sleep state in gpio_wakeup_enable will be
overwritten by esp_pm_configure.
2023-02-13 19:54:17 +08:00
jingli
f556ac1b92
soc_caps: remove SOC_GPIO_SUPPORT_SLP_SWITCH
...
all esp chips support this feature
2023-02-13 19:54:11 +08:00
Jin Cheng
7fc5d19730
Fixed build errors when sniff subrating is enabled.
2023-02-13 17:28:15 +08:00
Michael (XIAO Xufeng)
3e269ffc0d
esp32s3: fixed bug chip v0.0 detected as vX.Y
...
A typical value is 2.8.
Previous commit 32ef2b321a
doesn't fix the issue cleanly. The MSB of wafer_minor also has this problem.
2023-02-11 08:06:49 +00:00
Michael (XIAO Xufeng)
611339564d
esp32s3: fixed bug chip v0.0 detected as vX.0
...
A typical value is 2.0.
2023-02-11 08:06:49 +00:00
KonstantinKondrashov
3dcdcc08eb
efuse: Adds major and minor versions and others
2023-02-11 08:06:49 +00:00
Jiang Jiang Jian
ab6735155a
Merge branch 'bugfix/newlib_tz_env_mutex_v4.3' into 'release/v4.3'
...
newlib: Use correct recursive mutex for env and regular mutex for tz (v4.3)
See merge request espressif/esp-idf!22295
2023-02-11 12:32:55 +08:00
Jiang Jiang Jian
9ee1cda5e3
Merge branch 'bugfix/fatfs_mtime_dst_v4.3' into 'release/v4.3'
...
fatfs: fix incorrect mtime returned for files created during DST (v4.3)
See merge request espressif/esp-idf!18459
2023-02-11 09:01:31 +08:00
Jiang Jiang Jian
97454c017f
Merge branch 'bugfix/fix_some_wifi_bugs_230209_v4.3' into 'release/v4.3'
...
esp_wifi: fix some wifi bugs(Backport v4.3)
See merge request espressif/esp-idf!22290
2023-02-11 03:10:08 +08:00
Jiang Jiang Jian
3250b88828
Merge branch 'optimization/lwip_dhcp_coarse_timer_4.3' into 'release/v4.3'
...
lwip:optimization dhcp coarse timer for 4.3
See merge request espressif/esp-idf!22287
2023-02-11 02:31:30 +08:00
Jiang Jiang Jian
3dc1ab532e
Merge branch 'bugfix/secure_boot_v2_part_size_check_v4.3' into 'release/v4.3'
...
gen_esp32part: allow secure boot v2 based app partition size 4K aligned (v4.3)
See merge request espressif/esp-idf!22288
2023-02-10 19:24:46 +08:00
Jiang Jiang Jian
3d366e1959
Merge branch 'bugfix/rtc_8md256_deepsleep_time_esp32_v4.3' into 'release/v4.3'
...
pm: Fixed sleep time inaccurate bug when select 8MD256 as rtc slow clock on ESP32 (v4.3)
See merge request espressif/esp-idf!21823
2023-02-10 19:12:25 +08:00
cje
d8fc054115
sleep: fix sleep time inaccurate bug when select 8MD256 as rtc slow clock on ESP32
...
Related to: https://github.com/espressif/esp-idf/issues/6687
2023-02-10 01:36:40 +08:00
Ivan Grokhotkov
d7db6c3148
fatfs: fix incorrect mtime returned for files created during DST
...
mktime function uses tm_isdst member as an indicator whether the time
stamp is expected to be in daylight saving time (1) or not (0).
FAT filesystem uses local time as mtime, so no information about DST
is available from the filesystem.
According to mktime documentation, tm_isdst can be set to -1, in which
case the C library will try to determine if DST was or wasn't in
effect at that time, and will set UTC time accordingly.
Note that the conversion from UTC to local time and then back to UTC
(time_t -> localtime_r -> FAT timestamp -> mktime -> time_t) does not
always recover the same UTC time. In particular, the local time in the
hour before DST comes into effect can be interpreted as "before DST"
or "after DST", which would correspond to different UTC values. In
this case which option the C library chooses is undefined.
Closes https://github.com/espressif/esp-idf/issues/9039
Originally reported in https://github.com/espressif/arduino-esp32/issues/6786
2023-02-09 11:28:29 +00:00
xueyunfei
b5e8c68b59
lwip:optimization dhcp coarse timer
2023-02-09 19:28:28 +08:00
Steve Jothen
98c2470040
Use correct recursive mutex for env and regular mutex for tz
2023-02-09 16:04:47 +08:00
muhaidong
997af8de8a
docs: update ftm docs
2023-02-09 15:07:37 +08:00
muhaidong
36caf700c7
esp_wifi: fix some wifi bugs
...
1. fix ftm timer macro issue
2. send null data when state change from association to run
3. bugfix for optimize abnormal beacon log
4. bugfix RSNXE related changes
5. send ftm frames immediately
6. fix ftm procedure with peer failed status 4 issue
2023-02-09 15:01:49 +08:00
Mahavir Jain
726c7cd45c
partition_table: add tests for checking secure boot part size
2023-02-09 12:11:47 +05:30
Mahavir Jain
08ce6b92aa
gen_esp32part: allow secure boot v2 based app partition size 4K aligned
...
For Secure Boot v2 case, unsigned image is first padded to next 64K
aligned boundary and then a signature block of 4K gets appended. Thus
an app partition whose size is 4K aligned should be allowed here.
For Secure Boot v1 case, app partition size must be 64K aligned as the
signature block lies at the very end of 64K boundary.
Relevant:
57b601ab7f
2023-02-09 12:08:59 +05:30
Armando
984ee9dd38
adc: no longer support adc2 oneshot mode on esp32c3
...
Due to HW limitation, we don't support this anymore. On c3, ADC2 under oneshot mode is not stable.
However, you can enable CONFIG_ADC_ONESHOT_FORCE_USE_ADC2_ON_C3 to force use
ADC2.
Refer to errata to know more details:
https://www.espressif.com/sites/default/files/documentation/esp32-c3_errata_en.pdf
2023-02-08 09:04:28 +00:00
Armando
9b4986dd2c
adc: no longer support adc2 continuous mode on esp32c3
...
Due to HW limitation, we don't support this anymore. On c3, ADC2 under continuous mode is not stable.
However, you can enable CONFIG_ADC_CONTINUOUS_FORCE_USE_ADC2_ON_C3_S3 to force use
ADC2.
Refer to errata to know more details:
https://www.espressif.com/sites/default/files/documentation/esp32-c3_errata_en.pdf
2023-02-08 09:04:28 +00:00
Jiang Jiang Jian
30ee33c62e
Merge branch 'bugfix/wps_start_state_issue_v4.3' into 'release/v4.3'
...
esp_wifi: Add check for wps start state (v4.3)
See merge request espressif/esp-idf!22029
2023-02-06 17:22:09 +08:00
Jiang Jiang Jian
419d6209a8
Merge branch 'bugfix/coex_enable_disable_not_in_pairs_v4.3' into 'release/v4.3'
...
bluetooth: fix that functions "coex_enable" and "coex_disable" are not used in pairs(backport v4.3)
See merge request espressif/esp-idf!22096
2023-02-04 01:53:35 +08:00
Sumeet Singh
feb32ec9f4
NimBLE: Fix incomplete clearing of peer_dev_rec
2023-02-03 03:09:24 +00:00
wangmengyang
35ba1547e5
bluetooth: fix that functions "coex_enable" and "coex_disable" are not used in pairs on ESP32-C3
2023-02-03 03:08:42 +00:00
Shreyas Sheth
2cc790a69b
esp_wifi: Add check for wps start state
2023-02-03 03:08:17 +00:00
harshal.patil
f138411fd7
mbedtls/port: added stream_block parameter sanity check
2023-01-25 15:40:45 +05:30
harshal.patil
119ac05b5e
mbedtls: fix esp_aes_crypt_ctr writing to null stream block
2023-01-25 15:40:45 +05:30
harshal.patil
342671a943
mbedtls: added SOC_AES_SUPPORT_AES_192 check in esp_aes_gcm_setkey()
2023-01-25 15:40:45 +05:30
Shreyas Sheth
b44da528db
esp_wifi:Add wifi station config for enabling transition_disbale feature
2023-01-16 00:59:04 +05:30
Jiang Jiang Jian
7d5a228f15
Merge branch 'Bugfix/softap_excedes_the_range_of_subnet_4.3' into 'release/v4.3'
...
dhcp server:bugfix softap excedes the range of subnet
See merge request espressif/esp-idf!21995
2023-01-12 10:53:38 +08:00
chenjianxing
b9f31eaa66
esp_wifi: fix multicast pkts drop issue for some AP when DTIM period > 1
2023-01-11 11:04:18 +08:00
xueyunfei
cab17c713d
dhcp server:bugfix softap excedes the range of subnet
2023-01-11 09:53:48 +08:00
Jiang Jiang Jian
28f66e58ee
Merge branch 'bugfix/remove_sha384_hash_for_bigger_certs_v4.3' into 'release/v4.3'
...
esp_wifi: remove sha384 hash for cert size > 2k (v4.3)
See merge request espressif/esp-idf!21965
2023-01-10 22:42:21 +08:00
Jiang Jiang Jian
80dd246b14
Merge branch 'bugfix/sae_auth_and_pmk_issues_v4.3' into 'release/v4.3'
...
Fix SAE open auth and PMK issues (Backport v4.3)
See merge request espressif/esp-idf!21920
2023-01-10 19:03:10 +08:00
Kapil Gupta
21310654c7
Removed sha384 hash for certs > 2k
2023-01-09 15:58:23 +05:30
Shyamal Khachane
18052cc0fc
wpa_supplicant: Set PMK from PMKSA incase of caching
2023-01-09 09:58:54 +05:30
Shyamal Khachane
ce6bcb3868
esp_wifi: Fix open auth issue after commit message exchange
2023-01-09 09:58:54 +05:30
Shreyas Sheth
c78324e407
wpa_supplicant: set cipher key_len for AES 128 CMAC
2023-01-06 14:59:03 +05:30
Jiang Jiang Jian
aa8a00c4f0
Merge branch 'fix/long_assoc_comeback_time_v4.3' into 'release/v4.3'
...
esp_wifi: reject AP when assoc comeback time given is greater than 5 seconds (Backport v4.3)
See merge request espressif/esp-idf!21837
2023-01-06 12:01:51 +08:00
Jin Cheng
9e501aad7f
Fixed crash caused by accessing nullptr in btm_acl_disconnected
2023-01-04 11:44:50 +08:00
Sarvesh Bodakhe
b85e0c0daa
esp_wifi: Update wifi libs
...
Update wifi libs with below changes -
1. reject AP when assoc comeback time given is greater than 5 seconds
2022-12-29 15:39:49 +05:30
Jiang Jiang Jian
c3d47417fe
Merge branch 'bugfix/fix_c3_ble_temperature_performance_v4.3' into 'release/v4.3'
...
Fixed bluetooth disconnection caused by HW temperature rise or fall on ESP32C3(backport v4.3)
See merge request espressif/esp-idf!21746
2022-12-29 00:38:14 +08:00
Aditya Patwardhan
58111664f8
Merge branch 'bugfix/esp_tls_timeout_v4.3' into 'release/v4.3'
...
esp_tls: Fix issue when timeout is not explicitly given in esp_tls_cfg_t (v4.3)
See merge request espressif/esp-idf!21745
2022-12-28 15:05:13 +08:00
zwj
1f05925676
update phy and bb lib for temperature performance
2022-12-27 20:57:04 +08:00
Shyamal Khachane
aa78c85a05
wpa_supplicant: Clear current pmksa before generating RSN IE
...
Also update wifi libs with below changes -
- Fix reason codes for Invalid PMKID
- Fix handling of Assoc Resp status codes for Station
2022-12-23 16:56:20 +05:30
gauri patankar
c1075e32e0
esp_wifi:Update wifi libs
...
1. Avoid ftm initiator mode on softap
2. Fix home channel issue in ftm for apsta mode
3. Fix int overflow for T1-T4 counter variable
2022-12-22 15:52:47 +05:30
Laukik Hase
dbedcc264d
esp_tls: Fix issue when timeout is not explicitly given in esp_tls_cfg_t
...
- If internet connectivity weakened or disappeared suddenly while we were
in the TLS handshake stage, the app got stuck at that point indefinitely.
- This was because when timeout was not explicitly specified in esp_tls_cfg_t,
the default timeout was set at the wrong place. This causes the sockets to be
setup with zero timeout, hence the indefinite wait.
2022-12-21 14:59:58 +05:30
Jiang Jiang Jian
8cd8ec019c
Merge branch 'bugfix/fix_ble_some_bugs_20221219_v4.3' into 'release/v4.3'
...
backport some BLE bugs 20221219 (backport v4.3)
See merge request espressif/esp-idf!21716
2022-12-21 15:02:35 +08:00
Jiang Jiang Jian
0cf1971b3b
Merge branch 'bugfix/fix_some_ble_bugs_by_cjh_v4.3' into 'release/v4.3'
...
Fixed some BLE bugs (backport v4.3)
See merge request espressif/esp-idf!21692
2022-12-21 11:27:50 +08:00
Jiang Jiang Jian
0528ace322
Merge branch 'bugfix/flush_pmksa_entry_after_disconnect_v4.3' into 'release/v4.3'
...
Fix PMK caching related regression (Backport v4.3)
See merge request espressif/esp-idf!21694
2022-12-20 16:28:31 +08:00
zwj
5c4a30d08b
Update bt lib for ESP32
...
- Add config to set duplicate scan list refresh period
- overwrite the oldest device infor if the list is full
- Fixed duplicate scan period is not accurate
2022-12-20 15:58:37 +08:00
zhiweijian
3467e9db8b
bluedroid host supports the maximum number of connections to 9
2022-12-20 15:03:30 +08:00
zwj
ad0f1bb807
Update bt lib for ESP32-C3 and ESP32-S3
...
- Add config to set duplicate scan list refresh period
- overwrite the oldest device infor if the list is full
- Fixed duplicate scan period is not accurate
- Fixed some memory was not released after bluetooth controller initialization failed
- Fixed privacy errorr for directed advertising
- Fixed multiple periodic advertising sync failed in air
- Fixed lld_con.c line 3048 assert
- Fixed crash sometimes when connected as a slave by the 8th device
2022-12-20 15:02:22 +08:00
chenjianhua
df29143371
update bt-lib for ESP32
...
1 change default TX power to 9 dBm
2 fixed disconnect reason 0x1f (unspecified error)
3 fixed connection timeout due to terminate ind has not been acknowledged
2022-12-20 12:08:06 +08:00
zwj
3425d4df52
Fixed some memory was not released after bluetooth controller initialization failed on ESP32
2022-12-20 12:06:54 +08:00
Shyamal Khachane
37ce55cd3f
wpa_supplicant: Fix PMK caching related regression
...
Fixed regression caused by commit c171f0f3
2022-12-19 19:11:37 +05:30
chenjianhua
8e4701275c
bluedroid: fix ble connection update with same params
2022-12-19 19:32:41 +08:00
chenjianhua
65b3d93f79
bluedroid: fix encrypt keysize of GATT characteristic permission
2022-12-19 19:32:00 +08:00
chenjianhua
262387025b
bluedroid: correct the length of att read by type pdu
2022-12-19 19:31:49 +08:00
xiongweichao
f05fcfc752
bt: Fixed repeated register of vfs_id causing memory leaks
2022-12-19 12:17:14 +08:00
xiongweichao
110bdea520
Assert when malloc user_data fail
2022-12-19 12:17:14 +08:00
xiongweichao
efaa43d01b
Fixed memory leak when SPP initialization failed
2022-12-19 12:17:14 +08:00
Shreyas Sheth
c171f0f39b
wpa_supplicant:BDSA related patch updates
2022-12-16 16:14:06 +05:30
Jiang Jiang Jian
ec25f91a9d
Merge branch 'feature/backport_blufi_coexist_phy_init_flag_v4.3' into 'release/v4.3'
...
esp_wifi: backport coexist fix, connectionless ps fix, blufi feature
See merge request espressif/esp-idf!21609
2022-12-16 17:57:49 +08:00
liuning
a02a385ee2
esp_wifi: update lib
2022-12-16 14:20:17 +08:00
liuning
ce2deab1a4
phy: only set phy_init_flag at power domain off, when all modems deinit
2022-12-16 14:20:17 +08:00
liuning
312da39eb9
esp_wifi: fix some connectionless related issue
2022-12-16 14:20:17 +08:00
Kapil Gupta
6678e3fb8b
esp_wifi: Add changes to skip SAE handshake during WPS connection
2022-12-15 12:35:26 +00:00
Kapil Gupta
9dfaf20508
esp_wifi: Flush PMK caching if bss akm has changed
2022-12-15 12:35:26 +00:00
Kapil Gupta
7c5b13f611
Correct SSID copy length during WPS scan
2022-12-15 12:35:26 +00:00
Jiang Jiang Jian
6439222c31
Merge branch 'Bufix/backport_some_lwip_bugs_for_4.3_1214' into 'release/v4.3'
...
Lwip:Backport some lwip bugs to 4.3
See merge request espressif/esp-idf!21594
2022-12-15 13:55:20 +08:00
liuning
626b87871d
blufi: update version to 1.3
...
record connecting status, got ip status, maximum retry, connection end info (reason code, rssi) and provide greater information to phone
2022-12-14 19:23:08 +08:00
zhangyanjiao
ca17dc4f2d
esp_wifi: report rssi info in wifi event
2022-12-14 19:21:13 +08:00
morris
0319c702cf
Merge branch 'feature/_spi_slave_reset_trans_queue_api_v4.3' into 'release/v4.3'
...
spi: limit esp32 dma workaround only on esp32(v4.3)
See merge request espressif/esp-idf!21384
2022-12-14 17:43:27 +08:00
xueyunfei
6abb3eb0b4
Lwip:Backport some lwip bugs to 4.3
...
* Update submodule: git log --oneline 76303df2386902e0d7873be4217f1d9d1b50f982..6fa02bd30daa656f896c7a36248253fb3b97660d
Detailed description of the changes:
- dhcp: reduce the DHCP Request timeout(esp-lwip@6fa02bd3)
- dhcp: optimization fine timer when dhcp start(esp-lwip@79182163)
- ip6 timer: optimization lwip ip6 reassembly timer (esp-lwip@c943fc5a)
- ip4 timer: optimization lwip ip4 reassembly timer (esp-lwip@17f41c9f)
- dns timer: optimization lwip dns timer (esp-lwip@7f5ab42c)
- napt: Fix clean compilation (espressif/esp-lwip@6132c975 )
- Lwip:add TCP Fin2 timeout configuration (espressif/esp-lwip@15b4400e )
- napt: Fix IP forwarding when forward netif enable NAPT (espressif/esp-lwip@c950063f )
- napt/stats: Move some napt counters to stats module (espressif/esp-lwip@475d658a )
- ip_napt_maint: Fix timestamp overflow handling (espressif/esp-lwip@2e904508 )
- napt: Fixes and improvements (espressif/esp-lwip@fb1f3552 )
2022-12-14 14:56:06 +08:00
Jiang Jiang Jian
ca6553ad9b
Merge branch 'bugfix/multiple_wifi_fixes_v4.3' into 'release/v4.3'
...
esp_wifi: backport some wifi bug fixes to v4.3
See merge request espressif/esp-idf!21467
2022-12-14 13:55:08 +08:00
Jiang Jiang Jian
0ee643387b
Merge branch 'feature/nimble_support_ble_max_conn_num_v4.3' into 'release/v4.3'
...
Nimble: Support maximum number of connections to 9 on ESP32-C3 and ESP32-S3 (v4.3)
See merge request espressif/esp-idf!21552
2022-12-14 10:43:24 +08:00
jack
fc1e91f53c
esp_wifi: update wifi lib
...
1.wifi: fixed sniffer mode can not capture control packet when station is enabled
2.Fixed WAPI issue on GTK compability and reference to broadcast arp pkts.
3.Fixed TX fragment issue that PN code is less than MSDU after PN code add two for TX fragment.
4.Added station connect retry count to make it easier to connect to the except AP
5.Fixed some issues on Soft-AP power save.
6.Fixed SoftAP memory leak after wifi init and deinit
7.Fixed sta get ap info does not return connected ssid issue.
8.Fixed SoftAP disconnection happened even when receive PS-Poll.
2022-12-13 16:19:41 +05:30
Rahul Tank
4e366665ae
Nimble: Update documentation to include distinction between upstream
...
mesh example and ESP-BLE-MESH
2022-12-13 12:56:29 +05:30
morris
81ee095b16
Merge branch 'bugfix/fix_slave_gpio_cs_mixed_with_iomux_bus_v4.3' into 'release/v4.3'
...
spi_slave: fix slave can't use iomux bus mixed with gpio cs_pin (v4.3)
See merge request espressif/esp-idf!21376
2022-12-12 15:49:09 +08:00
Jiang Jiang Jian
19310eea60
Merge branch 'bugfix/correct_the_default_SR_mode_v4.3' into 'release/v4.3'
...
bugfix/correct the SR_mode selection when konw nothing about Peripheral's SR_mode (v4.3)
See merge request espressif/esp-idf!21521
2022-12-12 14:57:27 +08:00
Rahul Tank
b07ca316d0
Nimble: Support maximum number of connections to 9 on ESP32-C3 and ESP32-S3
2022-12-09 19:13:56 +05:30
jincheng
31b6acc88a
Added reporting for ACL link related events to application
2022-12-09 11:15:56 +08:00
Jin Cheng
bfe007388f
correct the SR_mode selection when konw nothing about Peripheral
2022-12-09 10:37:42 +08:00
Jiang Jiang Jian
df901e0fe8
Merge branch 'contrib/github_pr_9529_v4.3' into 'release/v4.3'
...
component_bt: Fixed memory leak due to not freeing memory if posting a message to a thread fails(v4.3)
See merge request espressif/esp-idf!21473
2022-12-08 11:44:55 +08:00
Wang Meng Yang
05c497e9c2
Merge branch 'bugfix/reduce_BTU_TASK_stack_consumption_v4.3' into 'release/v4.3'
...
Reduce the stack consumption of BTU_TASK (backport v4.3)
See merge request espressif/esp-idf!21436
2022-12-07 11:29:56 +08:00
morris
8b7ae11828
Merge branch 'bugfix/i2c_func_iram_v4.3' into 'release/v4.3'
...
I2C: put some interrupt used functions into IRAM(backport v4.3)
See merge request espressif/esp-idf!21422
2022-12-07 10:51:39 +08:00
xiongweichao
84e400cd8c
bt: Fixed incorrect parameters in switching to BTC context
2022-12-07 10:22:41 +08:00
xiongweichao
dad8773c07
bt:Modify the member variable *arg in struct btc_msg to arg[0]
2022-12-07 10:22:36 +08:00
xiongweichao
433767f97a
bt: Fixed memory leak due to not freeing memory if posting a message to a thread fails
2022-12-07 10:22:29 +08:00
alex.li
e7a2559640
esp_wifi: fix wapi gtk id compability issue and adapt tx frag pn sequently.
2022-12-06 17:28:09 +08:00
Kapil Gupta
10b0b768b7
esp_wifi: Add config option for AP retry count
...
Provide a config option for station to retry with the AP
if connection fails first time.
2022-12-06 17:28:09 +08:00
Jiang Jiang Jian
35f9b6ad58
Merge branch 'bugfix/Fix_exceptional_list_params_check_v4.3' into 'release/v4.3'
...
ble_mesh: stack: Fix exceptional list parameters check issue(v4.3)
See merge request espressif/esp-idf!21443
2022-12-06 14:44:25 +08:00
Wang Meng Yang
722291e404
Merge branch 'bugfix/reattempt_crash_v4.3' into 'release/v4.3'
...
NimBLE: Fixed going for reattempt connection code (v4.3)
See merge request espressif/esp-idf!21177
2022-12-06 14:02:23 +08:00
wangjialiang
0f95a31589
ble_mesh: stack: Fix exceptional list parameters check issue
2022-12-05 20:26:11 +08:00
Cao Sen Miao
aac5297f8a
I2C: put some interrupt used functions into IRAM
2022-12-05 18:05:28 +08:00
zwj
8ce5d113ca
Reduce the stack consumption of BTU_TASK
2022-12-05 17:29:40 +08:00
isha.pardikar@espressif.com
7b51ebe7a8
NimBLE: Fixed going for reattempt connection code
2022-12-05 14:33:40 +05:30
Armando
9061efd3d1
spi: limit esp32 dma workaround only on esp32
2022-12-01 21:00:35 +08:00
jingli
f2e92f564e
bt: fix bt sleep flow hangs in btdm_sleep_clock_sync
...
Bluetooth low power related logic and regs have separate power domain from MAC and BB,
and do not power down during light sleep. If reset when power up MAC and BB in sleep
flow, it may destroy the state of bt low power part.
2022-12-01 20:54:45 +08:00
wanlei
a6ea6716ce
spi_slave: fix slave can't use iomux bus mixed with gpio cs_pin
2022-12-01 20:21:11 +08:00
Jiang Jiang Jian
c0ba33a99d
Merge branch 'bugfix/check_ies_in_match_security_v4.3' into 'release/v4.3'
...
Adding check for ies in match security (Backport v4.3)
See merge request espressif/esp-idf!21312
2022-12-01 10:46:57 +08:00
xiongweichao
9b2b5d1651
Fixed a2dp failing to connect again after disconnect
2022-11-30 19:15:36 +08:00
Jiang Jiang Jian
6b48dd30e6
Merge branch 'bugfix/esp_periph_uart_clk_gate_issue_v4.3' into 'release/v4.3'
...
esp_system: use ESP_CONSOLE_UART_NUM instead of CONSOLE_UART_NUM (backport to v4.3)
See merge request espressif/esp-idf!21284
2022-11-30 17:30:42 +08:00
Jiang Jiang Jian
1d000363c6
Merge branch 'bugfix/disable_prov_encryption_v4.3' into 'release/v4.3'
...
Wifi Prov: Disabled the default support for BLE Encrpytion on characteristics read /write (v4.3)
See merge request espressif/esp-idf!21265
2022-11-30 15:59:06 +08:00
gauri patankar
66a8eb9ff9
Adding check for ies in match security
2022-11-30 11:57:26 +05:30
Aditya Patwardhan
ee7953dc2a
Merge branch 'feature/update_expat_2_5_0_v4.3' into 'release/v4.3'
...
expat: Upgrade expat to release v2.5.0
See merge request espressif/esp-idf!21295
2022-11-30 14:03:18 +08:00
Harshit Malpani
6ff2df0046
expat: Upgrade expat to release v2.5.0
2022-11-28 13:57:22 +05:30
gauri patankar
4f8a869392
Add changes to prevent security params overwritten in full scan (backport v4.3)
2022-11-28 12:50:54 +05:30
jiangguangming
5888f9201f
esp_system: use ESP_CONSOLE_UART_NUM instead of CONSOLE_UART_NUM
2022-11-28 10:37:39 +08:00
Jiang Jiang Jian
3685ed2829
Merge branch 'bugfix/fix_connect_and_mesh_issues_v4.3' into 'release/v4.3'
...
esp_wifi: fix connect issue and mesh issue (backport v4.3)
See merge request espressif/esp-idf!21204
2022-11-28 10:19:51 +08:00
Rahul Tank
6040bba236
Wifi Prov: Disabled the default support for BLE Encrpytion on characteristics read /write
...
By default, disabled the BLE Encrpyption requirement for provisioning characteristic.
With this flag enabled, when remote attempts to read and if the ACL link is not encrypted,
ESP device will return Insufficient Authentication. It is remote device responsibility to go
for link encryption which may result in pairing.
Some devices do not proceed for any pairing and just show failure pop-up. Also, user needs
to remove bonding on remote phone manually and then try again. This is causing bad user experience.
End user can enable it as per their use case.
2022-11-25 14:21:13 +05:30
Jin Cheng
79b4d8fe4f
optimized a2dp_sink audio datapath
...
1. removed audio cache in BTC layer of Bluedroid
2. added flow control for audio data in application layer
Closes https://github.com/espressif/esp-idf/issues/9622
2022-11-24 13:13:40 +08:00
Jiang Jiang Jian
81d598b46f
Merge branch 'bugfix/fix_hfp_clcc_parser_bug_4.3' into 'release/v4.3'
...
Bugfix/Fix HFP client parse CLCC command response bug[backport 4.3]
See merge request espressif/esp-idf!21158
2022-11-24 11:12:15 +08:00
Jiang Jiang Jian
a74a732c10
Merge branch 'bugfix/fixing_memory_leak_wps_scan' into 'release/v4.3'
...
Fixed a memory leak issue created when parsing scan results
See merge request espressif/esp-idf!20740
2022-11-24 10:39:10 +08:00
muhaidong
0ed631f47a
esp_wifi: Modify wifi scan return value.
...
1. Modify wifi scan return value same to docs.
2. Change some logs' log level wo avoid misunderstanding.
3. Fix connect fail return wrong error code issue
2022-11-23 19:10:13 +08:00
zhangyanjiao
7cf171cb1f
update doc for set channel
2022-11-23 19:09:49 +08:00
zhangyanjiao
92eb91f985
update wifi reason code
2022-11-23 19:09:03 +08:00
Jiang Jiang Jian
2e0da2773b
Merge branch 'bugfix/change_default_tx_power_on_c3_v4.3' into 'release/v4.3'
...
Change BLE default TX power on ESP32C3(backport v4.3)
See merge request espressif/esp-idf!21169
2022-11-23 14:28:30 +08:00
jgujarathi
d5b9fbac44
(wpa_supplicant) : Fixed a memory leak issue created when parsing scan results.
2022-11-23 10:07:01 +05:30
Jiang Jiang Jian
d732a84bfd
Merge branch 'bugfix/wpa_enterprise_reauth_v4.3' into 'release/v4.3'
...
esp_wifi: Fix WiFi Enterprise Reauthentication issue (v4.3)
See merge request espressif/esp-idf!21073
2022-11-23 10:42:55 +08:00
zhiweijian
92c8189388
support BLE memory release on ESP32C3 and ESP32S3
2022-11-21 12:21:47 +08:00
zhiweijian
30f2cc87ce
Update bt lib for ESP32C3
...
- Added config to disable scan backoff
- Fixed llm_scan.c assert at line 1485 during controller deinit if duplicate scan is not stopped
- Call pll track in controller task
2022-11-21 12:04:35 +08:00
zwj
098465ff74
Fixed errors reported by CI clang_tidy_check
2022-11-21 11:11:52 +08:00
zwj
da42e4a234
Fixed sometimes BTU task overflow when doing read and write performance test
2022-11-21 11:11:40 +08:00
zhiweijian
14f396c367
change default tx power from 3dBm to 9dBm
2022-11-21 11:11:17 +08:00
wuzhenghui
378fa313ec
bugfix: fix redefined _iram_end
2022-11-18 19:50:23 +08:00
liqigan
60875836bd
fix HFP client parse CLCC command response bug
2022-11-18 19:44:17 +08:00
jingli
b6896055a2
hal/gpio_ll: fix digital gpio can not enable hold during deep sleep when force_unhold set(32/s2/s3)
2022-11-18 03:00:01 +00:00
jingli
58e9ce6fe3
hal/gpio_ll: fix digital gpio can not disable hold during deep sleep
2022-11-18 03:00:01 +00:00
jingli
24eea75f9c
esp_hw_support/sleep: fix current leakage when hold digital io during deep sleep
2022-11-18 03:00:01 +00:00
morris
3bbb109eb2
Merge branch 'feature/remove_psram_cs_clk_pin_settings_config_s2_s3_v4.3' into 'release/v4.3'
...
psram: remove CS/CLK pin settings in kconfig on ESP32S2 (v4.3)
See merge request espressif/esp-idf!21048
2022-11-14 17:17:13 +08:00
Shreyas Sheth
7e8cca6c2f
esp_wifi: Bugfix WPA Enterprise Reauthentication issue
2022-11-14 11:12:58 +05:30
Jin Cheng
60e281805c
fixed the issue iOS devices cannot initiate connection
...
to ESP32 while there is a BLE connection to this ESP32
Closes https://github.com/espressif/esp-idf/issues/6557
2022-11-14 09:50:22 +08:00