Erhan Kurubas
08ef49e478
gcov: enable gcov in single core
2021-11-12 22:35:52 +03:00
Gustavo Henrique Nihei
8e03ec2253
efuse: Enable C++ linkage for the include headers on esp_efuse.h
...
Signed-off-by: Gustavo Henrique Nihei <gustavo.nihei@espressif.com>
2021-11-12 13:30:37 -03:00
Gustavo Henrique Nihei
c72930f726
efuse: Add missing stdbool.h include file
...
Signed-off-by: Gustavo Henrique Nihei <gustavo.nihei@espressif.com>
2021-11-12 13:30:36 -03:00
Erhan Kurubas
3277ff6856
gcov: ipc component name changei
2021-11-12 19:28:07 +03:00
Erhan Kurubas
3830ac21e2
esp_ipc: fix race condition in ipc task
2021-11-12 00:33:01 +03:00
Erhan Kurubas
384ca3452b
gcov: enable single core tests
2021-11-12 00:32:44 +03:00
Erhan Kurubas
9681fb3d71
ipc: enable ipc task at single core for gcov dump
2021-11-12 00:32:43 +03:00
Erhan Kurubas
1d987334d3
gcov: add stub table size entry
2021-11-12 00:32:43 +03:00
Erhan Kurubas
fd8b943619
gcov: add gcov callback into the ipc task
2021-11-12 00:32:39 +03:00
Erhan Kurubas
49942a9468
gcov: readme update for ESP32-S2
2021-11-12 00:31:56 +03:00
Erhan Kurubas
357e938298
gcov: dump in a special thread
2021-11-12 00:31:17 +03:00
Erhan Kurubas
1a40148be0
gcov: added dbg stub capabilites and magic number entry to keep backward compatible
2021-11-12 00:29:57 +03:00
Xie Wen Xiang
fb7f4ed6ab
Merge branch 'bugfix/fix_crash_when_shutdown_bt_v4.1' into 'release/v4.1'
...
component/bt: fix crash when shutdown bt(backport v4.1)
See merge request espressif/esp-idf!15711
2021-11-10 06:31:53 +00:00
Wang Meng Yang
cce7229188
Merge branch 'bugfix/hfp_demo_audio_not_sine_v4.1' into 'release/v4.1'
...
fix hfp_ag demo audio not sine_v4.1
See merge request espressif/esp-idf!15748
2021-11-09 08:26:08 +00:00
boarchuz
59a37806e7
fix bootloader build with rom flash driver
...
Closes https://github.com/espressif/esp-idf/pull/7508
Closes https://github.com/espressif/esp-idf/issues/6849
2021-11-08 14:14:14 +08:00
xiewenxiang
7b18c32ad2
component/bt: fix crash when shutdown bt(backport v4.1)
2021-11-08 10:43:15 +08:00
Island
25ce06d32e
Merge branch 'bugfix/ble_mesh_host_init_v4.1' into 'release/v4.1'
...
ble_mesh: nimble: return error if init host twice (v4.1)
See merge request espressif/esp-idf!15790
2021-11-05 03:12:34 +00:00
Island
30450b456f
Merge branch 'bugfix/sig_ble_mesh_errata_e16350_v4.1' into 'release/v4.1'
...
ble_mesh: stack: Apply the errata E16350 from Bluetooth SIG (v4.1)
See merge request espressif/esp-idf!15786
2021-11-05 03:09:32 +00:00
Chinmay Chhajed
8aad029805
Merge branch 'bugfix/ble_conn_latency_max_value_v4.1' into 'release/v4.1'
...
BLE: Set connection max latency value to 499.
See merge request espressif/esp-idf!15757
2021-11-04 10:17:38 +00:00
Marius Vikhammer
0e3ebe868f
bootloader: disable psram cache bug fix for bootloader
...
The psram cache bug fix was also being applied to the bootloader binary (for cmake),
which doesnt do any psram access.
Applying this fix would increase the binary size, as much as 300 bytes in worst case scenarios
2021-11-04 11:32:19 +08:00
lly
2f0fbfa3ef
ble_mesh: nimble: return error if init host twice
2021-11-03 19:22:00 +08:00
lly
68d902e9c8
ble_mesh: stack: Apply the errata E16350 from Bluetooth SIG
2021-11-03 19:07:08 +08:00
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