Roland Dobai
f28daac734
Merge branch 'feature/add_cn_to_idf_github_assets' into 'master'
...
feat(tools): Add dl.espressif.cn IDF_GITHUB_ASSET to documentation
Closes IDF-8065
See merge request espressif/esp-idf!25613
2023-09-05 18:01:27 +08:00
Krzysztof Budzynski
5325cb5a9f
Apply 1 suggestion(s) to 1 file(s)
2023-09-05 17:26:52 +08:00
Mahavir Jain
5b001f9e53
Merge branch 'bugfix/aes_dma_descriptor_setup_issue' into 'master'
...
fix(aes): correct the linking of the DMA descriptors
See merge request espressif/esp-idf!25723
2023-09-05 17:19:28 +08:00
caixinying-git
be3a526c28
docs: update format issues for files under hw-reference
2023-09-05 17:03:49 +08:00
Darian Leung
035423eb37
refactor(freertos/idf): Move task creation "PinnedToCore" API to addition headers
...
This commit moves/merges the IDF FreeRTOS "PinnedToCore" task creation
functions from tasks.c/task.h to idf_additions.h/freertos_task_c_additions.h.
Also updated FreeRTOS Mock component to provide mocks for "idf_additions.h"
headers for our mock tests.
2023-09-05 16:20:59 +08:00
Darian Leung
e612db7d32
refactor(freertos/idf): Move weak xTimerCreateTimerTask() to IDF additions header
...
A weak xTimerCreateTimerTask() was added to tasks.c as a workaround in ESP-IDF
in order to prevent timers.c from being linked when unused.
This commit moves that workaround to `freertos_tasks_c_additions.h`
2023-09-05 16:20:59 +08:00
Darian Leung
a5f9a2505e
refactor(freertos/idf): Remove application hook prototypes
...
The following application hook protoypes are defined in task.h from FreeRTOS
V10.4.0 onwwards and no longer need to be declared in tasks.c, thus have been
removed:
- vApplicationStackOverflowHook()
- vApplicationTickHook()
- vApplicationGetIdleTaskMemory()
2023-09-05 16:20:59 +08:00
Darian Leung
7b4dba4ffd
refactor(freertos/idf): Move vTaskSetThreadLocalStoragePointerAndDelCallback()
...
This commit moves vTaskSetThreadLocalStoragePointerAndDelCallback() from
`tasks.c`/`task.h` to `freertos_tasks_c_additions.h`/`idf_additions.h`.
2023-09-05 16:20:59 +08:00
Darian Leung
5de6a9aff6
refactor(freertos/idf): Move compatibility functions
...
This function moves ulTaskNotifyTake()/xTaskNotifyWait() from IDF FreeRTOS
`tasks.c` to `freertos_compatibility.c`. These functions were kept for
pre-compiled library compatibilty. Move them reduces the kernel source code
difference when compared to upstream FreeRTOS.
2023-09-05 16:20:59 +08:00
Darian Leung
0db40f9e6c
refactor(freertos/idf): Move IDF task utility functions to API addition headers
...
This commit combines various task utility API additions in IDF FreeRTOS and with
their Amazon SMP FreeRTOS addition counterparts. The folloiwng functions have
been moved to freertos_tasks_c_additions.h and idf_additions.h as these API
are considered public:
- xTaskGetCurrentTaskHandleForCPU()
- xTaskGetIdleTaskHandleForCPU()
- xTaskGetAffinity()
- pxTaskGetStackStart()
Also fixed in missing #if macros when vTaskCoreAffinityGet() is called in
Amazon SMP FreerTOS tests.
2023-09-05 16:20:59 +08:00
Darian Leung
db9d9658f9
refactor(freertos/idf): Move xTaskIncrementTickOtherCores() to IDF additition headers
...
This commit moves xTaskIncrementTickOtherCores() to freertos_tasks_c_additions.h
and freertos_idf_additions_priv.h (as API is private). This reduces the code
differences cmpared to upstream FreeRTOS.
2023-09-05 16:20:59 +08:00
Darian Leung
8825c8dda9
refactor(freertos/idf): Move critical section API to IDF addition headers
...
- The following IDF API additions are moved to freertos_tasks_c_additions.h
(implementation) and freertos_idf_additions_priv.h (declaration) as APIs are
private. This reduces the source code difference from upstream.
- prvENTER_CRITICAL_OR_SUSPEND_ALL()
- prvEXIT_CRITICAL_OR_RESUME_ALL()
- prvENTER_CRITICAL_OR_MASK_ISR()
- prvEXIT_CRITICAL_OR_UNMASK_ISR()
- vTaskTakeKernelLock()
- vTaskReleaseKernelLock()
- Rename vTask[Take/Release]KernelLock() to prv[Take/Release]KernelLock() to
indicate that the this API is private.
2023-09-05 16:20:59 +08:00
Darian Leung
6c66018d5b
refactor(freertos/smp): Move vTaskStartSchedulerOtherCores() to API additions to headers
...
- Move vTaskStartSchedulerOtherCores()
- implementation to freertos_tasks_c_additions.h
- declaration to freertos_idf_additions_priv.h as API is private
- Rename vTaskStartSchedulerOtherCores() -> prvStartSchedulerOtherCores() to
indicate that the function is private.
2023-09-05 16:19:42 +08:00
Darian Leung
5227616e57
refactor(freertos/idf): Implicitly include idf_additions.h from FreeRTOS.h
...
This commit adds an implicit inclusion of `idf_additions.h` to `FreeRTOS.h` in
preparation for moving some IDf specific API to `idf_additions.h`.
This implict inclusion allows existing code to be continue using these
relocated APIs without any changes in header inclusions.
Also removed "#pragma once" directive from "freertos_tasks_c_additions.h" since
that header is included as a source file.
2023-09-05 16:19:42 +08:00
Ren Pei Ying
b4cc451321
Merge branch 'docs/add_CN_trans_for_docs_in_protocols' into 'master'
...
docs: Provide CN translation for api-reference/protocols/icmp_echo.rst and...
Closes DOC-5976
See merge request espressif/esp-idf!25323
2023-09-05 16:00:26 +08:00
Ren Pei Ying
c3daa4bf78
docs: Provide CN translation for api-reference/protocols/icmp_echo.rst and...
2023-09-05 16:00:26 +08:00
Rocha Euripedes
64d160b712
Merge branch 'mqtt/update_submodule_05b3476' into 'master'
...
feat(mqtt): Updates submodule to 05b3476
See merge request espressif/esp-idf!25754
2023-09-05 15:52:06 +08:00
Armando
cbe4470a1b
change(soc): remove no longer used mmu.h on p4
2023-09-05 15:47:26 +08:00
Armando
de77ab3061
change(soc): added SOC_ prefix to mmu defs
2023-09-05 15:47:26 +08:00
Armando
a9e3f963c2
change(soc): remove / move rom only mmu defs
2023-09-05 15:47:26 +08:00
Rocha Euripedes
10c21f704c
Merge branch 'bugfix/module_logging_tag_lower_case' into 'master'
...
mqtt: unite supported components tags under common structure
See merge request espressif/esp-idf!22418
2023-09-05 14:06:33 +08:00
Cai Xin Ying
8a4df2d5a7
Merge branch 'docs/add_Chinese_translation_for_api-reference/peripherals/adc_calibration.rst' into 'master'
...
docs: provide CN translation for api-reference/peripherals/adc_calibration.rst
Closes DOC-5858
See merge request espressif/esp-idf!25032
2023-09-05 14:01:01 +08:00
Ondrej Kosta
0ff10c3e06
feat(esp_eth): added IRAM optimization option for internal EMAC
2023-09-05 07:42:30 +02:00
Cao Sen Miao
c7740b4c2b
fix(i2c_master): Fix I2C new master cannot continously probe
2023-09-05 12:27:18 +08:00
Shu Chen
32ad8f10e0
Merge branch 'feature/add_mesh_local_prefix_config' into 'master'
...
feat(openthread): add mesh local prefix configuration
See merge request espressif/esp-idf!25099
2023-09-05 12:16:19 +08:00
Planck (Lu Zeyu)
6f55f76344
feat(st7789): add data endian config
...
Closes https://github.com/espressif/esp-idf/issues/11416
2023-09-05 12:11:19 +08:00
Marius Vikhammer
e3861261eb
fix(wdt): move non-auto generated wdt values to ll
2023-09-05 11:52:34 +08:00
morris
b4c7b13ce9
Merge branch 'docs/add_Chinese_translation_for_api-guides/lwip.rst' into 'master'
...
docs: provide CN translation for api-guides/lwip.rst
Closes DOC-5300
See merge request espressif/esp-idf!24002
2023-09-05 11:15:48 +08:00
caixinying-git
20951be687
docs: provide CN translation for api-reference/peripherals/adc_calibration.rst
2023-09-05 11:12:34 +08:00
Jiang Guang Ming
7d0c434e2c
Merge branch 'bugfix/esp32h2_update_desc_ecdsa_workmode' into 'master'
...
fix(soc/esp32h2): Update the description of the ECDSA_WORK_MODE
See merge request espressif/esp-idf!25736
2023-09-05 09:20:22 +08:00
Jiang Guang Ming
89f6c6d999
fix(soc/esp32h2): Update the description of the ECDSA_WORK_MODE
2023-09-05 09:20:21 +08:00
Wang Mengyang
68dc3c16e0
ci(bt/bluedroid): Add CI build test for HFP examples with voice over HCI enabled
2023-09-05 08:14:56 +08:00
Wang Meng Yang
efeb308bc0
Merge branch 'test/bqb_test_bt_classic_hid' into 'master'
...
feat(bt/bqb): Add setting local di record function for specific hid case of bqb auto test
Closes BT-3359
See merge request espressif/esp-idf!25055
2023-09-05 07:20:24 +08:00
Cai Xin Ying
065307fb84
Merge branch 'docs/add_Chinese_translation_for_api-guides/cplusplus.rst' into 'master'
...
docs: provide CN translation for api-guides/cplusplus.rst
Closes DOC-5460
See merge request espressif/esp-idf!24239
2023-09-04 22:14:10 +08:00
Euripedes Rocha
8c72daafa8
feat(mqtt): Updates submodule to 05b3476
...
* Update submodule:
git log --oneline 301bd9e0282eb993523b84d6c56d2559346aa071..05b347643f6679cc60a50a9664b86a24ebf3ae10
Detailed description of the changes:
* Fix: Mock test should include idf_additions.h
- See merge request espressif/esp-mqtt!191
- fix: Mock tests include idf_additions.h (espressif/esp-mqtt@f35aaa1 )
* Adds missing documentation to outbox configuration.
- See merge request espressif/esp-mqtt!190
- docs: Adds missing documentation to outbox configuration. (espressif/esp-mqtt@c355e0b )
2023-09-04 15:33:34 +02:00
Nic Ballinger
f5450ca530
fix(docs/jtag): Fix hard-coded HW breakpoints/watchpoints number
...
Closes https://github.com/espressif/esp-idf/pull/11986
2023-09-04 15:40:04 +03:00
zhiweijian
618c6f8336
Add new mesh types for exception list on ESP32-C3 and ESP32-S3
2023-09-04 20:38:36 +08:00
chenqingqing
75efaa6465
feat(bt/api): Add new apis for hfp to get the numbers of packet status received and sent
2023-09-04 20:29:03 +08:00
chenqingqing
55cdf8434b
fix(bt/bluedroid): Fixed the issue of NULL address for btc_hf_ag
2023-09-04 19:30:37 +08:00
Abhinav Kudnar
9bdb59a479
doc (nimble): Added the tutorial for ble_multi_adv example.
2023-09-04 16:27:33 +05:30
caixinying-git
6ee5bbf3a6
docs: provide CN translation for api-guides/lwip.rst
2023-09-04 17:46:22 +08:00
Mahavir Jain
d382eeed54
Merge branch 'esp32p4/add_hmac_ds_support' into 'master'
...
esp32p4/add hmac ds support
Closes IDF-7543 and IDF-6518
See merge request espressif/esp-idf!25148
2023-09-04 16:45:56 +08:00
morris
1af5e870f1
Merge branch 'refactor/esp_emac_module_control' into 'master'
...
refactor(emac): add LL functions for bus clock control
See merge request espressif/esp-idf!25710
2023-09-04 16:22:57 +08:00
Wang Zi Yan
e697109388
Merge branch 'docs/translate_sub_power_mode_docs' into 'master'
...
docs: Provide CN trans for sub power mode docs
Closes DOC-5972
See merge request espressif/esp-idf!25391
2023-09-04 15:56:02 +08:00
Ren Pei Ying
ad65d70b5b
Merge branch 'docs/add_CN_trans_for_esp_serial_slave_link_and_asio.rst' into 'master'
...
docs: Provide Chinese translation for api-reference/protocols/esp_serial_slave_link.rst
Closes DOC-5998
See merge request espressif/esp-idf!25375
2023-09-04 15:03:28 +08:00
Ren Pei Ying
518a4e1173
docs: Provide Chinese translation for api-reference/protocols/esp_serial_slave_link.rst
2023-09-04 15:03:28 +08:00
sonika.rathi
2162a132f1
fix(example/storage): Add warning for unsupported targets for SD_Card example
2023-09-04 08:59:51 +02:00
Jiang Jiang Jian
104d50d442
Merge branch 'feature/improve_c6_iperf_performance' into 'master'
...
feat(wifi): optimize esp32c6 iperf performance
See merge request espressif/esp-idf!25020
2023-09-04 14:34:54 +08:00
Xu Xiao
8847eeec0c
feat(wifi): optimize esp32c6 iperf performance
2023-09-04 14:34:54 +08:00
xiaqilin
d2660635aa
feat(esp_coex): add external coex slave support
2023-09-04 14:21:22 +08:00