shenmengjing
1ddc11448e
docs: Provide Chinese translation for sd_pullup_requirements
2024-10-10 11:55:28 +08:00
Island
5643521c3b
Merge branch 'fix/ble_mesh_esp32c5_lib_bugfix' into 'master'
...
feat(ble_mesh): esp32c5 lib update
Closes BLERP-1095
See merge request espressif/esp-idf!34027
2024-10-10 10:19:03 +08:00
Kevin (Lao Kaiyao)
ab17cd167f
Merge branch 'refactor/split_esp32h2_soc_include_folder' into 'master'
...
refactor(soc): sort esp32h2 soc headers
See merge request espressif/esp-idf!33318
2024-10-10 09:59:00 +08:00
Sarvesh Bodakhe
1acf446369
Merge branch 'fix/add_wifi_public_header_checksums' into 'master'
...
feat(wifi/coex): Add integrity check for public headers files for esp32c5, esp32c61 and esp32_host
See merge request espressif/esp-idf!33932
2024-10-09 23:49:12 +08:00
Sarvesh Bodakhe
8b4ebea872
ci: Add md5 checksum validation for COEX public header files for new chips
...
Add MD5 checksum validation for public header files of the following new chips:
esp32c5 and esp32c61.
2024-10-09 23:11:09 +08:00
Sarvesh Bodakhe
5cab997c15
ci: Add md5 checksum validation for WiFi public header files for new chips
...
Add MD5 checksum validation for public header files of the following new chips:
esp32c5, esp32c6, and esp32_host.
2024-10-09 23:11:09 +08:00
Sarvesh Bodakhe
2d6188ea76
feat(wifi): Add checks for public headers for esp32c5, esp32c61 and esp32_host
...
Add md5sum integrity check for public header files for esp32c5, esp32c61
and esp32_host libraries.
2024-10-09 23:11:09 +08:00
Wang Tao
883855efd2
Merge branch 'fix/fix_send_deauth_protect_list_lock_issue' into 'master'
...
fix(wifi): fix send deauth mac list lock free issue
Closes WIFIBUG-780
See merge request espressif/esp-idf!33732
2024-10-09 21:37:08 +08:00
harshal.patil
0702fb82b0
ci(examples/protocols): Add more testing connections in the x509 bundle example
...
- This adds a test to try connecting to the domains that use the
most common certificate authorities with the default full cert bundle
2024-10-09 16:08:35 +05:30
harshal.patil
20fff296e4
test(mbedtls): Update custom cert bundle init API - bound checking testcase
...
- Support the newer cert bundle format in the test
2024-10-09 16:08:35 +05:30
harshal.patil
b097eb12b3
ci(mbedtls/esp_crt_bundle): Format esp_crt_bundle.c using astyle
2024-10-09 16:08:35 +05:30
Hanno
d8e31eb6d0
feat(mbedtls/esp_crt_bundle): Reduced RAM & stack use of cert bundle
...
Closes https://github.com/espressif/esp-idf/pull/13204
Signed-off-by: harshal.patil <harshal.patil@espressif.com>
2024-10-09 16:08:35 +05:30
Roman Leonov
0be9d7d3f2
Merge branch 'fix/usb_host_lib_example' into 'master'
...
fix(usb_host_lib): Returned task suspend
See merge request espressif/esp-idf!34046
2024-10-09 18:24:54 +08:00
C.S.M
e667ddf7c2
Merge branch 'fix/p4_retention_def' into 'master'
...
fix(i2c_master): fix the sleep retention number on p4
See merge request espressif/esp-idf!34044
2024-10-09 18:19:37 +08:00
Linda
81dd3aab1b
docs: fix a typo in I2C RTC clock name
2024-10-09 18:12:41 +08:00
Konstantin Kondrashov
0592bb6888
fix(examples): Fix flash_enc_wifi test in pytest_simple_ota
2024-10-09 12:39:43 +03:00
Roman Leonov
418583a5be
fix(usb_host_lib): Returned task suspend
2024-10-09 11:05:21 +02:00
Peter Marcisovsky
c72629c869
Merge branch 'refactor/usb_new_critical_section_api' into 'master'
...
refactor(usb_host): Update the USB component to new critical section API
Closes IDF-11361
See merge request espressif/esp-idf!33988
2024-10-09 16:44:34 +08:00
C.S.M
b6e558d55d
fix(i2c_master): fix the sleep retention number on p4
2024-10-09 16:23:23 +08:00
Island
3a4aa2e1e7
Merge branch 'feat/ble_mesh_v1.1_feat_disable_support' into 'master'
...
feat(ble_mesh): esp ble mesh v1.1 features enable/disable supported
Closes BLERP-1060
See merge request espressif/esp-idf!33777
2024-10-09 15:33:51 +08:00
Konstantin Kondrashov
6cad62594a
Merge branch 'feature/adds_new_part_types_subtypes' into 'master'
...
feat(partitions): Adds new partition types and subtypes for bootloader and partition_table
See merge request espressif/esp-idf!33792
2024-10-09 15:32:34 +08:00
Island
977c55b0fa
Merge branch 'modified_ble_multi_conn_example_readme' into 'master'
...
update(ble): Modified the ble multi_conn example's readme
Closes IDFGH-13454
See merge request espressif/esp-idf!33990
2024-10-09 15:15:30 +08:00
C.S.M
38c36b9d22
Merge branch 'feat/i2c_sleep_retention' into 'master'
...
feat(i2c): Support i2c sleep retention on esp32c5/p4/c61
Closes IDF-8458
See merge request espressif/esp-idf!33738
2024-10-09 15:08:08 +08:00
Frantisek Hrbata
35953a6ea7
fix(ldgen): enable default name SORT in linker fragment
...
Currently, the `SORT` flag mandates the inclusion of at least the
`sort_by_first` argument in the grammar, despite the documentation[1]
indicating that `SORT` can be utilized without any arguments, defaulting
to sorting input sections by name. Fix this by modifying the grammar
to allow a default `SORT` and update a test accordingly.
[1] https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/
linker-script-generation.html
Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
2024-10-09 14:25:52 +08:00
laokaiyao
a7ebec84fe
refactor(soc): sort esp32h2 soc headers
2024-10-09 14:18:08 +08:00
Erhan Kurubas
9a13c59723
Merge branch 'add_openocd_stub_bins_fixed' into 'master'
...
feat(esp_system): preload openocd stub binaries and reserve memory for debugging
See merge request espressif/esp-idf!32817
2024-10-09 14:06:09 +08:00
morris
aebf700919
refactor(freertos): rename SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY and move to freertos
2024-10-09 13:32:03 +08:00
harshal.patil
e12c261b1b
ci(esp_security): Add config to enable FPGA-related tests
2024-10-09 09:46:19 +05:30
harshal.patil
9e3a846356
ci(esp_security): Enable crypto drivers test app build only for supported targets
2024-10-09 09:46:18 +05:30
zhanghaipeng
514155de3b
fix(ble/bluedroid): Fixed BLE handle check for GATT API
2024-10-09 12:03:41 +08:00
wangtao@espressif.com
71dfc8ea17
fix(wifi): fix send deauth mac list lock free issue
2024-10-09 11:36:56 +08:00
WanqQixiang
1723b413d6
fix(openthread): Add check for ip address in DNS external resolve hook
2024-10-09 10:11:21 +08:00
Martin Vychodil
f2c26b8ec0
Merge branch 'bugfix/example_sdspi_extra_components_dir' into 'master'
...
fix(examples): remove stray EXTRA_COMPONENT_DIRS, fix check
See merge request espressif/esp-idf!33819
2024-10-09 03:31:25 +08:00
Peter Marcisovsky
d19666d8e5
refactor(usb_host): Update the USB component to new critical section API
2024-10-08 17:43:55 +02:00
Jiang Jiang Jian
5315027e0d
Merge branch 'bugfix/fix_wifi_bugs_240919' into 'master'
...
fix(wifi): fix wifi bugs 240919
Closes WIFIBUG-1 and WIFIBUG-789
See merge request espressif/esp-idf!33728
2024-10-08 22:52:12 +08:00
luoxu
024306f4bf
feat(ble_mesh): esp32c5 lib update
2024-10-08 19:15:53 +08:00
Rahul Tank
1c80078b63
Merge branch 'bugfix/wifi_bt_coex_crash' into 'master'
...
fix(nimble): Fix the sequence of ll and host transport init
Closes BT-3872
See merge request espressif/esp-idf!33951
2024-10-08 18:59:42 +08:00
Sudeep Mohanty
0e5adc1b9c
feat(freertos): Add FreeRTOS port layer mocks for CMock tests
...
This commit adds mocks for the FreeRTOS linux port layer for tests which
mock the FreeRTOS component and use port layer APIs.
2024-10-08 12:08:24 +02:00
Erhan Kurubas
bf78146dd0
Merge branch 'esp32c61_coredump_support' into 'master'
...
ESP32-C61 coredump support
Closes IDF-9268 and IDF-10166
See merge request espressif/esp-idf!33528
2024-10-08 16:04:28 +08:00
Erhan Kurubas
9a7ae1367a
Merge branch 'enable_apptrace_builds' into 'master'
...
ci(apptrace): enable build tests for all targets except esp32p4
See merge request espressif/esp-idf!33975
2024-10-08 15:58:22 +08:00
C.S.M
3f061bd557
feat(i2c_master): Support i2c sleep retention on esp32c5/p4/c61
2024-10-08 15:55:48 +08:00
sibeibei
02e9c850d8
fix(wifi): fix wifi bugs 240919
2024-10-08 15:43:45 +08:00
Sudeep Mohanty
fc84220d90
test(freertos): Added unit test for event groups to test priority inversion
...
This commit adds a FreeRTOS unit test to verify that event groups do not
cause priority inversion when unblocking a higher priority task.
2024-10-08 09:36:45 +02:00
Sudeep Mohanty
bd4de3c8a3
fix(freertos): Fixed priority inversion when setting event group bits
...
This commit fixes a priority inversion when a lower priority task set
event group bits to unblock a higher priority task but the lower
priority task continued to run.
2024-10-08 09:36:45 +02:00
Aditya Patwardhan
6dc8fe3db3
Merge branch 'docs/update_cn_trans_for_secure_boot_v2' into 'master'
...
docs: Update CN translation for secure-boot-v2.rst
Closes DOC-9082
See merge request espressif/esp-idf!33895
2024-10-08 15:13:59 +08:00
Alexey Lapshin
1a6765f1a5
Merge branch 'feature/binary-size-exceeded-hint' into 'master'
...
feat(tools): add binary size exceeded hint
See merge request espressif/esp-idf!33969
2024-10-08 15:07:30 +08:00
luoxu
aa022b14ce
feat(ble_mesh): esp ble mesh v1.1 features enable/disable supported
2024-10-08 15:02:08 +08:00
Zhang Shuxian
4c08e00c6a
docs: Update CN translation for system.rst
2024-10-08 14:49:14 +08:00
Adam Múdry
c672db530b
docs(nvs): Document nvs_check.py functions
2024-10-08 08:33:32 +02:00
Zhang Hai Peng
2f2727828c
Merge branch 'bugfix/fix_ext_conn_adv_data_check' into 'master'
...
fix(bt): Update bt lib for ESP32-C3 and ESP32-S3(01cc408)
Closes BLERP-1083
See merge request espressif/esp-idf!33899
2024-10-08 14:20:28 +08:00