David Cermak
8bf61c289a
lwip: Add config for DHCP client id; Fix DNS server idx assert issue
...
This commit brings two esp-lwip fixes to IDF:
1) Add configuration to disable DHCP client identification
2195f7416f
This config could be used to disable option 61 in DHCP packets, so that
clients will be identified by their chaddr only.
(This is the lwip upstream original behaviour)
2) Fix server_idx increasing to DNS_MAX_SERVERS and trigger the LWIP_ASSERT
5a567d52f7
When lwip doesn't have DNS server and resolve a domain address, the server_idx
will increase to DNS_MAX_SERVERS, which will trigger the LWIP_ASSERT and make device crash.
Closes https://github.com/espressif/esp-idf/issues/6878
2021-11-29 11:18:54 +01:00
Roland Dobai
f3b823381b
Merge branch 'bugfix/coredump_esp_panic_reason_v4.1' into 'release/v4.1'
...
coredump: Fixes ESP-specific panic reasons handling (v4.1)
See merge request espressif/esp-idf!16068
2021-11-26 11:03:57 +00:00
Gustavo Henrique Nihei
7e17bd8eb3
bootloader_support: Fix and re-enable bootloader_debug_buffer function
...
The body of the bootloader_debug_buffer function was conditioned to
macros that were never defined, resulting in deactivated code.
Signed-off-by: Gustavo Henrique Nihei <gustavo.nihei@espressif.com>
2021-11-26 13:19:18 +08:00
Alexey Gerenkov
719974ac88
coredump: Fixes ESP-specific panic reasons handling
2021-11-25 09:43:32 +01:00
shenjun
56a1a74492
esp_wifi_mesh: add esp_mesh_send_block_time to set blocking time of esp_mesh_send
...
1. add esp_mesh_send_block_time to set blocking time of esp_mesh_send
2. fix the issue that layer2 node connect to lower-layer node when FIXED-ROOT root disappeared
2021-11-25 14:02:03 +08:00
Roland Dobai
81517ead9e
Merge branch 'feature/gcov_dump_in_thread_v4.1' into 'release/v4.1'
...
Feature/gcov dump in thread v4.1
See merge request espressif/esp-idf!15918
2021-11-23 07:55:11 +00:00
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
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
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
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
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
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
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
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
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
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
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
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
xiewenxiang
85a6c2ea9b
component/bt: fix data length update failed
2021-10-13 19:47:43 +08: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
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
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
David Čermák
e83df0aa20
Merge branch 'bugfix/config_data_interface_early_v4.1' into 'release/v4.1'
...
initialize data interface early (v4.1)
See merge request espressif/esp-idf!15091
2021-09-24 07:33:28 +00:00
Jiang Jiang Jian
d0525dcf03
Merge branch 'bugfix/stack_init_check_v4.1' into 'release/v4.1'
...
NimBLE: Check stack status before executing stack command
See merge request espressif/esp-idf!14985
2021-09-23 07:55:34 +00:00
zhiweijian
ffc6072f80
component/bt: add clear white list API
2021-09-22 16:01:51 +08:00
morris
1c75ad9416
uart: support alloc driver object in SRAM
...
If CONFIG_UART_ISR_IN_IRAM is on, which means user hope the uart
interrupt can still be serviced even when cache is diabled (e.g.
writing to flash). In that case, the driver should make sure to
put the all related objects into SRAM, avoid putting them in the PSRAM.
Closes https://github.com/espressif/esp-idf/issues/7044
Closes https://github.com/espressif/esp-idf/pull/7355
2021-09-22 11:57:28 +08:00
morris
89990bcbf5
uart: format driver code by astyle
2021-09-22 11:57:28 +08:00
Vikram Dattu
112cfe8f57
esp_http_client: Fixed handling of EAGAIN return
...
For https connection `ESP_TLS_ERR_SSL_WANT_READ` of esp_transport_read was getting treated as error.
Treated this as a timeout to fix connection abort issue!
Also handled http connection EAGAIN with `errno == EAGAIN` check.
Signed-off-by: Vikram Dattu <vikram.dattu@espressif.com>
2021-09-20 18:22:21 +05:30
Aditya Patwardhan
fc931ff193
Fix esp_mbedtls_write API
...
Fix esp_wolfssl_write API
Closes https://github.com/espressif/esp-idf/issues/7461
2021-09-16 09:07:48 +05:30