Ivan Grokhotkov
6d87100a70
feat(examples): add local components via idf_component.yml
...
Specifying all the dependencies (managed and local) in the manifest
makes it easier for users to see every component the example
depends on.
2023-09-19 10:38:24 +02:00
Cai Xin Ying
30f32f6de6
Merge branch 'docs/add_Chinese_translation_for_api-reference/peripherals/usb_host.rst' into 'master'
...
docs: provide CN translation for api-reference/peripherals/usb_host.rst
Closes DOC-5948
See merge request espressif/esp-idf!25292
2023-09-19 15:34:10 +08:00
Ren Pei Ying
ad1f2dca29
Merge branch 'add_CN_trans_for_/protocols/esp_spi_slave_protocol.rst' into 'master'
...
docs: Provide Chinese translation for /protocols/esp_spi_slave_protocol.rst
Closes DOC-6001
See merge request espressif/esp-idf!25374
2023-09-19 15:25:16 +08:00
Sudeep Mohanty
9d0b39cc56
Merge branch 'contrib/github_pr_12258' into 'master'
...
fix(vfs): Fix event_write may not exit critical section (GitHub PR)
Closes IDFGH-11084
See merge request espressif/esp-idf!26012
2023-09-19 14:50:40 +08:00
Wang Meng Yang
0cb0c49597
Merge branch 'bugfix/a2dp_media_ctrl' into 'master'
...
Bugfix/a2dp media ctrl
Closes BTQABR2023-42
See merge request espressif/esp-idf!25300
2023-09-19 14:27:06 +08:00
xuxiao
cb4b798867
fix(wifi): fix some esp32c6 wifi bugs
2023-09-19 13:27:01 +08:00
Konstantin Kondrashov
ecf4968e1c
Merge branch 'feature/esp32p4_support_ipc' into 'master'
...
feat(esp_system): Support IPC_ISR for ESP32P4
Closes IDF-7769
See merge request espressif/esp-idf!25812
2023-09-19 13:26:52 +08:00
morris
6bb05cccdd
feat(rmt): add driver support for esp32p4
...
including DMA feature
2023-09-19 12:54:14 +08:00
Gao Xu
80e3ece7d1
Merge branch 'bugfix/remove_wno_format_in_driver_hal_and_esp_hw_support_components' into 'master'
...
Remove -Wno-format in hal and esp_hw_support components
Closes IDF-6792
See merge request espressif/esp-idf!25402
2023-09-19 12:12:56 +08:00
Lou Tianhao
88364b8b11
feat(pm): add internal pull-up/downs option for gpio used for deepsleep wakeup
...
stash
2023-09-19 11:00:59 +08:00
Wang Meng Yang
4db3a589e3
Merge branch 'origin/test/bqb_test_bt_classic_avdtp' into 'master'
...
feat(bt/bqb): Add avdt abort function for BQB test
Closes BT-3340
See merge request espressif/esp-idf!25681
2023-09-19 08:40:06 +08:00
Jiang Jiang Jian
ea8b5c28ea
Merge branch 'bugfix/fix_wifi_fail_to_enter_lightsleep_when_disconnected_esp32c6' into 'master'
...
fix(sleep_modem): fix lightsleep failure if enable lightsleep at phy disabled
Closes WIFI-5725 and WIFI-6208
See merge request espressif/esp-idf!25902
2023-09-19 07:16:55 +08:00
Abhik Roy
4940cfaa88
feat: Added option to enable or disable Port mapping in NAPT
2023-09-18 23:53:23 +10:00
Darian Leung
b09462eae8
feat(freertos): Add beta support for FreeRTOS v10.5.1 kernel
...
This commit adds beta support for the FreeRTOS v10.5.1 kernel which can be
enabled by enabling the CONFIG_FREERTOS_USE_KERNEL_10_5_1 option.
The following changes have been made:
- Updated freertos/CMakeLists.txt to build v10.5.1 kernel with v10.4.3. ports
- Updated existing Xtensa and RISC-V ports to work with V10.5.1
- Modifications to other ESP-IDF components to work with v10.5.1
- Added some ESP-IDF specific tracing changes to v10.5.1 kernel
- Make CONFIG_FREERTOS_USE_KERNEL_10_5_1 a public option
Note: The beta release is missing some minor fixes, performance improvements,
and features. Using this beta release for production is not recommended.
Closes https://github.com/espressif/esp-idf/issues/7137
2023-09-18 21:32:14 +08:00
Michael (XIAO Xufeng)
efb9d9e7d4
Merge branch 'esp32_s2_s3_cpu_freq_to_pll' into 'master'
...
EspS2/S3: fixed the bug of insufficient voltage when the CPU switches frequency
See merge request espressif/esp-idf!25396
2023-09-18 20:01:31 +08:00
Darian Leung
49af70506a
feat(freertos): Add SMP critical section changes to FreeRTOS v10.5.1
...
This commit adds the SMP critical section changes to the v10.5.1 kernel. These
changes are temporarily documented in the `idf_changes.md` document. This
commit...
- Adds granular spinlocks to each data group (e.g., kernel, queues, event_groups etc.)
- Updates critical section macros to use those spinlocks
- Add missing critical sections required in SMP
2023-09-18 18:32:55 +08:00
Darian Leung
db64e51e53
feat(freertos): Add SMP kernel changes to FreeRTOS v10.5.1
...
This commit adds the key kernel changes to the v10.5.1 kernel to support
dual-core SMP. These changes are temporarily documented in the `idf_changes.md`
document. This commit...
- Added changes to kernel data structures to support multiple cores
- Changes to scheduling algorithm support SMP scheduling.
- Changes to each FreeRTOS function to support multiple cores and SMP
scheduling algorithm.
2023-09-18 18:32:54 +08:00
renpeiying
ab69581318
docs: Provide Chinese translation for /protocols/esp_spi_slave_protocol.rst
2023-09-18 17:58:48 +08:00
Jakob Hasse
0bea98c103
refactor(unity): improved unity task deletion function
2023-09-18 17:48:26 +08:00
Darian Leung
287bdc5e61
fix(test_apps): Trim builds of component test apps
...
Some component test apps do not use the "set(COMPONENTS main)" command in their
project level "CMakeLists.txt", thus leading to their builds pulling in all
ESP-IDF components.
This commit trims the build of multiple component test apps:
- Add "set(COMPONENTS main ...)" to project level "CMakeLists.txt"
- Add missing "PRIV_REQUIRES" in some "main" component "CMakeLists.txt"
Also removed repeated configuraiton options in legacy_i2c_driver/sdkconfig.ci.defaults
as they are already specified in legacy_i2c_driver/sdkconfig.defaults
2023-09-18 17:16:37 +08:00
Kevin (Lao Kaiyao)
ae80ad7ac7
Merge branch 'ci/increase_adc_performance_test_thersh_on_c6' into 'master'
...
ci(adc): increase adc performance test threshold on c6
Closes IDFCI-1803
See merge request espressif/esp-idf!25999
2023-09-18 17:13:00 +08:00
Kapil Gupta
3b748a6cb7
Merge branch 'feature/rename_wpa2_ent_to_eap_client' into 'master'
...
WiFi: Rename WPA2 enterprise APIs to EAP Client.
See merge request espressif/esp-idf!25233
2023-09-18 16:16:54 +08:00
LiPeng
b15712025c
fix(vfs): Fix event_write may not exit critical section
...
This commit fixes the event_write() function where the critical section
was unbalanced.
Merges https://github.com/espressif/esp-idf/pull/12258
2023-09-18 10:16:34 +02:00
nilesh.kale
e2906504fb
docs: Update maximum stack frames during heap memory debugging
2023-09-18 13:44:58 +05:30
Shu Chen
8aeff259c6
Merge branch 'feature/add_dns64_for_openthread_ci' into 'master'
...
feat(ci): add ci case for border router
See merge request espressif/esp-idf!25783
2023-09-18 15:55:37 +08:00
Rahul Tank
cd2ddd86a7
Merge branch 'bugfix/update_ble_phy_example' into 'master'
...
fix(nimble): Updated BLE Phy example
Closes BLERP-17
See merge request espressif/esp-idf!25908
2023-09-18 15:35:04 +08:00
Island
2c51e10198
Merge branch 'bugfix/fix_bleqabr23_394' into 'master'
...
Fixed address resolution for directed advertising on esp32c3 and esp32s3
See merge request espressif/esp-idf!25586
2023-09-18 15:23:03 +08:00
Liu Linyan
6b5d7d103e
Merge branch 'bugfix/ble_mesh_v1.1_misc_fixes' into 'master'
...
Bugfix/ble mesh v1.1 misc fixes
Closes BLERP-25
See merge request espressif/esp-idf!25903
2023-09-18 14:10:44 +08:00
liuning
1314a9f8cf
esp_wifi: support connectionless manually pwr mgmt
2023-09-18 13:16:54 +08:00
nilesh.kale
84d91e5bf9
fix(esp_hw_support/test_apps): fix redudancy in hmac and ds test apps
2023-09-18 10:42:54 +05:30
Mahavir Jain
1c28493cee
Merge branch 'feature/add_aes_and_sha_peripheral_to_crypto_testapps' into 'master'
...
feat(hal/testapps): add aes and sha peripheral to crypto testapps
See merge request espressif/esp-idf!25604
2023-09-18 12:51:50 +08:00
Jakob Hasse
a41247439e
Merge branch 'bugfix/pthread_cond_var_link_hook' into 'master'
...
bugfix(pthread): fixed pthread_condvar linker hook
See merge request espressif/esp-idf!25911
2023-09-18 12:28:00 +08:00
liuning
c6db306833
sleep_modem: split esp_wifi_internal_mac_sleep_configure, add lock for pm functions
2023-09-18 11:49:52 +08:00
liuning
90698bf1f5
fix(sleep_modem): fix lightsleep failure if enable lightsleep at phy disabled
2023-09-18 11:46:32 +08:00
Jiang Jiang Jian
789569a982
Merge branch 'static_buf_for_management_and_null_data' into 'master'
...
feat(esp_wifi):static buf for management,control,qos null,null data rx packet
See merge request espressif/esp-idf!25085
2023-09-18 11:39:14 +08:00
Chen Yu Dong
5738ba18e9
Merge branch 'ci/fix_target_test_wifi_rule' into 'master'
...
Ci: fix target test wifi rule
See merge request espressif/esp-idf!25989
2023-09-18 10:53:07 +08:00
gaoxu
8c6ddb776c
fix: remove wno format in hal component
2023-09-18 02:43:41 +00:00
gaoxu
5b4469f973
fix: remove wno format in esp_hw_support component
2023-09-18 02:43:41 +00:00
Wang Meng Yang
a0ae1bbc61
Merge branch 'bugfix/coex_ble_scan_rate' into 'master'
...
fix(esp_coex): Fix esp32 ble scan not restart when wifi start stop
Closes BT-3376
See merge request espressif/esp-idf!25967
2023-09-18 10:40:34 +08:00
laokaiyao
f781bf1c5c
ci(adc): increase adc performance test threshold on c6
2023-09-18 10:22:11 +08:00
wangjialiang
8eed3a2467
fix(ble_mesh): Miscellaneous update for ble mesh
2023-09-16 15:58:14 +08:00
luoxu
14ca0f3db6
fix(ble_mesh): update lib to :1469712f9
2023-09-16 08:43:52 +08:00
morris
fd26abebce
Merge branch 'refactor/mcpwm_rcc_atomic' into 'master'
...
MCPWM: add RCC low level functions
Closes IDF-7731, IDF-7722, IDF-7716, IDF-7738, and IDF-7713
See merge request espressif/esp-idf!25959
2023-09-16 01:04:54 +08:00
KonstantinKondrashov
7a878bdc50
feat(esp_system): Support IPC_ISR for ESP32P4
2023-09-15 23:38:12 +08:00
Cai Xin Ying
2d0c8079ba
Merge branch 'docs/update_format_issues_left_in_EN_docs' into 'master'
...
docs: update format issues left in EN docs
Closes DOC-6312
See merge request espressif/esp-idf!25953
2023-09-15 23:17:20 +08:00
Peter Dragun
3981aae79f
feat(tools/monitor): move target tests to monitor repo
2023-09-15 16:04:11 +02:00
Cai Xin Ying
c334d580c4
Merge branch 'docs/update_format_issues_left_in_CN_docs' into 'master'
...
docs: update format issues left in CN docs
Closes DOC-6314
See merge request espressif/esp-idf!25966
2023-09-15 21:37:33 +08:00
Chen Yudong
1ce30750c9
fix(pre-commit): ignore files not in git repo
2023-09-15 18:57:35 +08:00
caixinying-git
b07ada6e94
docs: update format issues left in EN docs
2023-09-15 10:46:25 +00:00
Chen Yudong
a68748b6e8
fix(ci): target test wifi rules should include esp-wifi component
2023-09-15 18:30:11 +08:00