Chinmay Chhajed
5bf675ea4f
BLE: Set connection max latency value to 499.
2021-11-01 16:39:13 +05:30
jincheng
4e34c26a56
fix hfp_ag demo audio not sine_v4.1
2021-11-01 12:19:58 +08:00
KonstantinKondrashov
104dc63c85
efuse_table_gen: Fixes wrong joining fields with omitted names
...
The issue is related to the non-sequential way of description when
such fields going together sequential.
Related to esp32h2 chip for eFuses: MAC_FACTORY and MAC_EXT.
The issue is in wrong indexes of MAC_EXT.
MAC_EXT got indexes like it is joined to MAC_FACTORY.
const esp_efuse_desc_t* ESP_EFUSE_MAC_FACTORY[] = {
&MAC_FACTORY[0],
&MAC_FACTORY[1],
&MAC_FACTORY[2],
&MAC_FACTORY[3],
&MAC_FACTORY[4],
&MAC_FACTORY[5],
NULL
};
const esp_efuse_desc_t* ESP_EFUSE_MAC_EXT[] = {
&MAC_EXT[6],
&MAC_EXT[7],
NULL
};
This commit fixed it to:
const esp_efuse_desc_t* ESP_EFUSE_MAC_EXT[] = {
&MAC_EXT[0],
&MAC_EXT[1],
NULL
};
2021-10-29 19:37:35 +08:00
Anton Maklakov
41e3158c26
ci: Add retries on runner system failures
2021-10-29 13:50:56 +07:00
Mahavir Jain
9029ad44fa
Merge branch 'bugfix/fix_http_head_request_v4.1' into 'release/v4.1'
...
esp_http_client: Fix HEAD request will affect the all next HTTP requests unless we close the HTTP request(backport v4.1)
See merge request espressif/esp-idf!15712
2021-10-29 06:38:42 +00:00
yuanjm
4b8a5ff153
esp_http_client: Fix HEAD request will affect the all next HTTP requests unless we close the HTTP request
...
Closes https://github.com/espressif/esp-idf/issues/7777
2021-10-29 10:21:07 +08:00
Kapil Gupta
bd716b6fa1
wpa_supplicant: Add missing cflag for legacy makefile
2021-10-28 16:55:50 +05:30
Kapil Gupta
c4b411cbb2
wpa_supplicant: Update internal tls client with sha384/sha512 support
2021-10-28 16:55:14 +05:30
Kapil Gupta
04d02e5b52
esp_wifi: Fix interoperability issue with windows 2008
2021-10-28 16:07:01 +08:00
Mahavir Jain
f9327b9d82
Merge branch 'bugfix/select_boot_app_v4.1' into 'release/v4.1'
...
partition_table: Fix case when a few similar to otadata partitions in the table (v4.1)
See merge request espressif/esp-idf!15650
2021-10-28 05:38:23 +00:00
Island
2a455d7d5e
Merge branch 'bugfix/heartbeat_filter_with_acceptlist_v4.1' into 'release/v4.1'
...
ble_mesh: stack: Fix heartbeat filter with accept list (v4.1)
See merge request espressif/esp-idf!15678
2021-10-28 02:58:47 +00:00
Jiang Jiang Jian
9af2c5991d
Merge branch 'bugfix/remove_assert_when_inq_done_4.1' into 'release/v4.1'
...
component_bt: fix crash after inquiry has finished (v4.1)
See merge request espressif/esp-idf!15672
2021-10-27 11:29:32 +00:00
wangjialiang
661528d4f7
ble_mesh: stack: Fix heartbeat filter with accept list
2021-10-27 16:47:17 +08:00
xiongweichao
8656b9f088
Remove assert when inq done
...
Closes https://github.com/espressif/esp-idf/issues/6759
2021-10-27 14:36:37 +08:00
Anton Maklakov
38d3c35a4b
Merge branch 'bugfix/support_py34-35_cffi_v4.1' into 'release/v4.1'
...
Tools: Constrain the cffi package for older pythons (v4.1)
See merge request espressif/esp-idf!15609
2021-10-26 13:53:22 +00:00
KonstantinKondrashov
a86117223b
partition_table: Fix case when a few similar to otadata partitions in the table
...
It was when in the partition table there is a partition with type="data" and suptype=""(empty),
in this case type=1, suptype=0. It is similar to otadata partition.
This commit fixes it, now it will handle it as type=1, suptype=6 (ESP_PARTITION_SUBTYPE_DATA_UNDEFINED).
2021-10-26 16:49:26 +08:00
Sergei Silnov
0603acf91e
Tools: Constrain the cffi package for older pythons
2021-10-25 20:14:31 +08:00
Wang Meng Yang
e0deeedfba
Merge branch 'feature/add_README_for_controller_hci_uart_demo_v4.1' into 'release/v4.1'
...
[document] add README.md for demo controller_hci_uart_demo for v4.1
See merge request espressif/esp-idf!15570
2021-10-25 08:11:34 +00:00
Jiang Jiang Jian
e16977f67f
Merge branch 'bugfix/fix_ble_scan_failed_issue_master_4.1' into 'release/v4.1'
...
Fix the ble scan failed issue
See merge request espressif/esp-idf!15590
2021-10-21 11:57:58 +00:00
Anton Maklakov
be8eec22f8
Merge branch 'ci/fix_deploy_docs_preview_url_v4.1' into 'release/v4.1'
...
ci: update docs preview url (v4.1)
See merge request espressif/esp-idf!15510
2021-10-21 03:30:01 +00:00
Yang Zhao
e14327fa02
1.Fix the ble scan failed issue, this may happen in coexit environment
...
2.Fix connection failed with LG 5.0 phone
3.Check only for same X component of public key in BR/EDR
2021-10-21 11:08:46 +08:00
Anton Maklakov
d78f07166c
Merge branch 'bugfix/retry_download_submodule_v4.1' into 'release/v4.1'
...
ci: retry download from Gitlab on error 500 (v4.1)
See merge request espressif/esp-idf!15560
2021-10-20 08:13:07 +00:00
jincheng
50b8f73b5b
add README.md for demo controller_hci_uart_demo
2021-10-20 09:04:20 +08:00
Ivan Grokhotkov
25385d72ab
ci: revert type annotations in gitlab_api.py to python2 compatible
2021-10-19 19:44:31 +07:00
Ivan Grokhotkov
fdcfba5650
ci: retry Gitlab operations on error 500
2021-10-19 19:44:24 +07:00
Fu Hanxi
bb7dcb8113
ci: retry download artifacts
2021-10-19 19:44:17 +07:00
Ivan Grokhotkov
4878cdd125
ci: fetch submodules from mirror, if enabled
2021-10-19 19:44:10 +07:00
Fu Hanxi
beaee539de
ci: retry download if catched IOError/EOFError
2021-10-19 19:44:04 +07:00
Wang Meng Yang
bd28980da5
Merge branch 'bugfix/btdm_ble_data_length_update_fail_v4.1' into 'release/v4.1'
...
Fix data length update failed(release v4.1)
See merge request espressif/esp-idf!15504
2021-10-18 03:08:22 +00:00
Wang Meng Yang
3874ab6aac
Merge branch 'bugfix/ble_set_scan_param_error_v4.1' into 'release/v4.1'
...
Fix the bug when ble setting scan param
See merge request espressif/esp-idf!13978
2021-10-15 07:59:00 +00:00
Yuan Jian Min
0c46c56c01
Merge branch 'bugfix/fix_cplusplus_miss_in_dhcp_v4.1' into 'release/v4.1'
...
dhcpserver: support cplusplus (backport v4.1)
See merge request espressif/esp-idf!15361
2021-10-14 11:59:38 +00:00
Marius Vikhammer
b6842845b9
ci: update docs preview url
2021-10-14 14:24:00 +08:00
xiewenxiang
85a6c2ea9b
component/bt: fix data length update failed
2021-10-13 19:47:43 +08:00
Ivan Grokhotkov
ef647e941e
Merge branch 'feature/windows_installer_moved_to_github_backport_4.1' into 'release/v4.1'
...
tools: Windows Installer project moved to github.com/espressif/idf-installer - backport v4.1
See merge request espressif/esp-idf!15476
2021-10-11 13:50:54 +00:00
Juraj Michálek
58d48574a1
tools: remove dependency on Windows installer - backport
2021-10-11 12:31:30 +02:00
Roland Dobai
cd1c40459f
Merge branch 'bugfix/constrain_cryptography_v4.1' into 'release/v4.1'
...
Tools: Constrain the cryptography package version in order to avoid breaking changes (v4.1)
See merge request espressif/esp-idf!15463
2021-10-11 07:19:57 +00:00
Mahavir Jain
1bc071c2de
Merge branch 'fix/update_https_example_root_certificate_v4.1' into 'release/v4.1'
...
Updated the root certificate of https examples (v4.1)
See merge request espressif/esp-idf!15439
2021-10-11 04:00:49 +00:00
Bao Hong De
4d46e6c268
Merge branch 'feature/sync_bt_lib_with_hli_v4.1' into 'release/v4.1'
...
components/bt: Sync bt lib with the high level interrupt version
See merge request espressif/esp-idf!15329
2021-10-11 03:15:06 +00:00
Roland Dobai
72e96a58f3
Tools: Constrain the cryptography package for avoiding breaking changes
...
The cryptography 35 release causes breaking changes. Some of
certificates are rendered invalid and the package cannot be build
without rust. See
https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst#3500---2021-09-29
for more details.
2021-10-10 19:27:05 +02:00
yuanjm
f570b33b66
dhcpserver: support cplusplus
...
Closes https://github.com/espressif/esp-idf/issues/7494
Merges https://github.com/espressif/esp-idf/pull/7526
2021-10-08 16:45:39 +08:00
baohongde
e10416659c
components/bt: Sync bt lib with the high level interrupt version
2021-10-08 14:20:36 +08:00
Harshit Malpani
4cde8e7792
Update example test for esp_http_client
2021-10-07 18:03:47 +05:30
Harshit Malpani
ade8b8b7a0
Updated the root certificate of https examples
2021-10-07 16:51:08 +05:30
Mahavir Jain
f6f417ceee
Merge branch 'feature/upgrade_nghttp2_component_v4.1' into 'release/v4.1'
...
nghttp2: upgrade to v1.41.0 release (v4.1)
See merge request espressif/esp-idf!15344
2021-10-05 05:39:29 +00:00
Vikram Dattu
369ef2e6a8
Fixed broken http2_request example.
...
Implementation of `esp_tls_conn_new_sync` now uses timeout_ms value to
give up retries.
Specified this value to be 10 sec. (10 * 1000 ms).
Signed-off-by: Vikram Dattu <vikram.dattu@espressif.com>
2021-10-01 04:10:51 +08:00
Mahavir Jain
bf80d8b5da
nghttp2: upgrade to v1.41.0 release
...
Detailed changelog:
https://github.com/nghttp2/nghttp2/releases/tag/v1.41.0
Closes: https://github.com/espressif/esp-idf/issues/4883
Closes IDFGH-2821
2021-10-01 04:10:51 +08:00
Jiang Jiang Jian
05f5998b98
Merge branch 'cherry-pick-e8360fe0-2' into 'release/v4.1'
...
wpa_supplicant: clean tls client state machine (backport v4.1)
See merge request espressif/esp-idf!15038
2021-09-29 11:47:06 +00:00
Roland Dobai
80ba98aa9d
Merge branch 'bugfix/idf_tools_virtualenv_seeder_v4.1' into 'release/v4.1'
...
tools/idf_tools.py: Changed default AppData seeder to seeder pip (backport v4.1)
See merge request espressif/esp-idf!15351
2021-09-27 12:33:42 +00:00
Michael (XIAO Xufeng)
cf584f1542
Merge branch 'bugfix/uart_driver_obj_into_sram_v4.1' into 'release/v4.1'
...
uart: put driver object into sram(v4.1)
See merge request espressif/esp-idf!14754
2021-09-26 01:33:37 +00:00
Juraj Sadel
eb369f21a9
tools/idf_tools.py: Changed default AppData seeder to seeder pip
2021-09-24 16:02:21 +02:00