Xiao Xufeng
5aa1a5f6ab
esp_system: increase bootloader partition size in examples using framepointer
2025-06-23 16:22:38 +08:00
Nebojsa Cvetkovic
d0ceef20f4
refactor(xtensa): Rename specreg.h register macros
...
This commit renames all registers in xtensa/specreg.h to by adding the
prefix XT_REG_. This is done to avoid naming collisions with similar
variable names. A new register file, viz., xt_specreg.h is created. The
previous names are still available to use but have been deprecated.
Closes https://github.com/espressif/esp-idf/issues/12723
Merges https://github.com/espressif/esp-idf/pull/16040
2025-06-17 15:37:33 +02:00
Konstantin Kondrashov
3a7c1a2e74
feat(bootloader): Bootloader OTA update with recovery bootloader feat
2025-06-12 18:47:33 +08:00
Mahavir Jain
a8bf745f23
Merge branch 'feat/adding_different_strategy_to_perform_tls_using_dynamic_feature' into 'master'
...
Add configuration to control dynamic buffer strategy in mbedtls
Closes IDF-12591
See merge request espressif/esp-idf!39469
2025-06-12 09:52:35 +05:30
Aditya Patwardhan
f4e8813d45
Merge branch 'contrib/github_pr_15972' into 'master'
...
feat(esp_http_client): Event to signal last header downloaded (GitHub PR)
See merge request espressif/esp-idf!39309
2025-06-10 13:08:10 +05:30
hrushikesh.bhosale
5928a87aa7
feat(mbedtls): Add configuration to control dynamic buffer strategy in mbedtls
...
Problem:
1. In low-memory scenarios, the dynamic buffer feature can fail due to memory fragmentation.
2. It requires a contiguous 16KB heap chunk, but continuous allocation and deallocation of
the RX buffer can lead to fragmentation.
3. If another component allocates memory between these operations, it can break up the
available 16KB block, causing allocation failure.
Solution:
1. Introduce configurable strategy for using dynamic buffers in TLS connections.
2. For example, convert RX buffers to static after the TLS handshake.
3. Allow users to select the strategy via a new field in the esp_http_client_cfg_t structure.
4. The strategy can be controlled independently for each TLS session.
2025-06-05 12:43:47 +05:30
Hrushikesh Bhosale
4ffb3fb32d
Merge branch 'feat/add_support_for_cert_bundle_for_advanced_ota_example' into 'master'
...
fix(advanced_ota): Added support for cert bundle in advanced OTA
See merge request espressif/esp-idf!39219
2025-05-29 13:57:00 +08:00
Richard Allen
30758d9beb
feat(esp_http_client): Event to signal last header download
...
When parsing ND-JSON streams, this is needed to indicate the
point when the ND-JSON stream is considered open, which
occurs just after the last HTTP_EVENT_ON_HEADER.
ND-JSON stream clients cannot rely on the first HTTP_EVENT_ON_DATA,
since that is only triggered by an event, which are optional and
may never be sent, or only sent well after the last HTTP_EVENT_ON_HEADER.
Closes #15952
2025-05-28 08:50:28 -05:00
Marius Vikhammer
951bc53a03
fix(sysview): fixed spelling mistake in comment
2025-05-28 08:46:26 +02:00
Marius Vikhammer
f764953df3
Revert "ci: enable sysview examples for all chips"
...
This reverts commit c9cf11cd1c
.
2025-05-28 08:38:08 +02:00
Marius Vikhammer
24d2720793
Revert "ci: OpenOCD class as fixture"
...
This reverts commit 0eb74ffcc3
.
2025-05-28 08:38:08 +02:00
hrushikesh.bhosale
2c5530528c
fix(advanced_ota): Added support for cert bundle in advanced OTA
...
1. Added support for cert bundle in advanced OTA
2. This allows to easily test example with different public servers
2025-05-27 10:53:19 +05:30
Samuel Obuch
0eb74ffcc3
ci: OpenOCD class as fixture
2025-05-27 04:48:18 +08:00
Samuel Obuch
c9cf11cd1c
ci: enable sysview examples for all chips
2025-05-27 04:48:18 +08:00
Konstantin Kondrashov
f7bc58e4ec
Merge branch 'ci/fix_secure_tests_for_efuse_example' into 'master'
...
fix(examples): Fix CI tests for secure boot cases
Closes IDF-13077
See merge request espressif/esp-idf!39111
2025-05-19 20:59:00 +08:00
Song Ruo Jing
81cca78ca1
Merge branch 'feature/add_uart_io_deinit_process' into 'master'
...
fix(uart): eliminate garbled data on TX/RX line in sleep
Closes IDF-4897, IDF-13030, and IDF-13037
See merge request espressif/esp-idf!38673
2025-05-15 21:53:04 +08:00
Song Ruo Jing
fa00aa43e7
refactor(uart): minor refactor to uart wakeup code
2025-05-15 11:20:59 +08:00
Samuel Obuch
bee2ed2502
ci: fix app_trace_basic rules and test
2025-05-13 21:31:43 +02:00
Samuel Obuch
4b664441ac
ci: enable gcov example for all chips
2025-05-13 21:26:14 +02:00
Konstantin Kondrashov
11321b585e
fix(examples): Fix CI tests for secure boot cases
2025-05-13 19:20:22 +03:00
Marius Vikhammer
3058e24af9
Merge branch 'feature/lp_core_c5_eco2' into 'master'
...
feat(ulp): update ulp for c5 eco2
Closes IDF-8637
See merge request espressif/esp-idf!38431
2025-05-12 13:35:25 +08:00
Marius Vikhammer
2fbbcc6d36
feat(ulp): updated to reflect eco2 ulp changes
2025-05-12 10:22:20 +08:00
Zhang Xiao Yan
97f904b6fb
Merge branch 'docs/fix_some_typos' into 'master'
...
docs: Fix some typos
Closes DOC-10600, DOC-10605, DOC-10606, DOC-10607, DOC-10608, and DOC-10671
See merge request espressif/esp-idf!37977
2025-04-30 18:35:40 +08:00
Shen Meng Jing
62d4115e08
docs: Fix some typos
2025-04-30 18:35:39 +08:00
Mahavir Jain
ff555428d1
Merge branch 'feat/dynamic_buffer_tls1.3' into 'master'
...
feat(mbedtls): add support for dynamic buffer for TLS1.3
Closes IDFGH-14708, IDF-12469, IDF-9178, and IDF-1725
See merge request espressif/esp-idf!38258
2025-04-30 17:52:43 +08:00
Mahavir Jain
6c0d5def85
test: convert C6 secure boot tests to use ECDSA scheme
2025-04-29 12:05:22 +08:00
laokaiyao
4fed6450a3
refactor(touch): separate touch sleep example
2025-04-25 23:57:14 +08:00
Ashish Sharma
415e0f3c86
feat(mbedtls): add support for dynamic buffer for TLS1.3
...
Closes https://github.com/espressif/esp-idf/issues/15448
2025-04-24 12:05:36 +08:00
jath03
954d12955d
feat(ulp): LP Timer interrupt example
...
This commit adds an example to demonstrate the use of the LP Timer
interrupt on the LP Core.
2025-04-23 09:52:45 +02:00
Li Shuai
8e25a37f67
Merge branch 'feat/support_hp_uarts_wakeup_modes_during_light_sleep' into 'master'
...
support hp uarts wakeup modes during light sleep
See merge request espressif/esp-idf!37730
2025-04-22 17:49:02 +08:00
Li Shuai
8f89a22117
change(example): add support for hp uart wakeup mode 1 2 3
2025-04-21 20:47:32 +08:00
Song Ruo Jing
ec5176e95a
fix(gpio): IO7 is not a LP IO anymore on C5 ECO2 chip
2025-04-18 19:03:08 +08:00
Mahavir Jain
78ef080251
Merge branch 'fix/ota_pytest_idf_path_fix' into 'master'
...
fix(ota): Fix the pytest's idf_path
See merge request espressif/esp-idf!38321
2025-04-15 17:04:39 +08:00
hrushikesh.bhosale
3e1317fd13
fix(ota): Fix the OTA pytest idf_path
...
Due to ci/pytest-mark-formatter(branch) fix, while executing the main
function from the pytest, it gives error for the incorrect idf_path.
This commit ensure that, idf_path is fixed correctly.
2025-04-15 11:06:51 +05:30
Wu Zheng Hui
a1be173193
Merge branch 'fix/fix_uart_console_broken_after_sleep' into 'master'
...
fix(esp_hw_support): fixed gpio sleep switching filling junk data to the console UART FIFO
See merge request espressif/esp-idf!38112
2025-04-09 22:06:22 +08:00
wuzhenghui
054e492b04
fix(esp_hw_support): fixed gpio sleep switching filling junk data to the console UART FIFO
2025-04-09 17:55:24 +08:00
Chen Ji Chang
f407fab479
Merge branch 'feat/support_gptimer_on_h4' into 'master'
...
feat(gptimer): support gptimer on esp32h4
Closes IDF-12373 and IDF-12374
See merge request espressif/esp-idf!38168
2025-04-08 13:46:49 +08:00
Chen Jichang
faacaaaf8f
feat(gptimer): support gptimer on esp32h4
2025-04-08 09:55:42 +08:00
nilesh.kale
54eb749fd2
feat: updated check for chip revision and respective testcases
...
This commit have updated check for max chip revision along with min chip revision.
Also added qemu based pytest to verify chip revision while performing OTA.
2025-04-07 18:18:16 +08:00
morris
122d122c64
refactor(gpio): reuse gpio_int_type_t in the rtc io driver
2025-04-01 18:21:57 +08:00
Chen Jichang
1785e1d329
refactor(flash): spilt flash cap in esp_rom
2025-03-28 15:04:25 +08:00
Chen Jichang
6c4271d4bb
feat(esp32h4): disable unsupported build
2025-03-28 14:41:29 +08:00
Chen Jichang
c34b4eb882
feat(esp32h4): enable ESP32H4 ci build
2025-03-28 14:41:28 +08:00
Guillaume Souchere
6ef7ad67d4
Merge branch 'feat/per-task-peak-usage' into 'master'
...
feat(heap): Add per task peak heap usage feature
Closes IDF-1811 and IDFGH-11277
See merge request espressif/esp-idf!26462
2025-03-26 15:20:04 +08:00
Guillaume Souchere
d429b1fdbb
feat(examples): Update heap task tracking examples
...
update example to showcasee the new API of heap task tracking
- Add basic heap task traacking example
- Add advanced example for task tracking
2025-03-25 10:22:30 +01:00
laokaiyao
c9cc7bb216
feat(ulp_touch): add example for lp_touch
2025-03-14 21:56:05 +08:00
C.S.M
628cca14b0
Merge branch 'fix/some_suspend_check' into 'master'
...
fix(spi_flash): 1. Fix esp32c6 esp32h2 flash suspend check according to errata. 2. Improve flash suspend test
See merge request espressif/esp-idf!37562
2025-03-12 10:37:18 +08:00
C.S.M
9aba44a2d9
test(spi_flash): Flash suspend test evolution
2025-03-11 16:21:07 +08:00
nilesh.kale
19ea12664d
feat: added test for ota resumption through ethernet
2025-03-10 13:32:06 +05:30
Erhan Kurubas
bb25c4ea67
test(apptrace): enable esp32c5 and esp32c61 tests
2025-03-06 01:13:50 +01:00