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