Radim Karniš
38d37e5e9f
feat(idf_py): idf.py flash will reflash only changed data sectors by default
...
idf.py flash -a is introduced to trigger a flash of all data (not just changed sectors).
2026-04-02 10:59:30 +02:00
Marius Vikhammer
5c572e5a60
docs: refresh broken documentation links
2026-04-01 10:17:33 +08:00
Ashish Sharma
2a22a22fd4
Merge branch 'fix/migration_guide_secure_boot_192_curve_deprecation' into 'master'
...
fix(secure_boot): marks 192 bit support curve legacy
See merge request espressif/esp-idf!46255
2026-03-17 15:32:58 +08:00
Ashish Sharma
d8b02883dc
fix(secure_boot): marks 192 bit support curve legacy
2026-03-17 10:25:44 +08:00
harshal.patil
269b90323f
docs: Adds a migration guide entry for HMAC peripheral's PSA interface
...
Co-authored-by: Zhang Shu Xian <zhangshuxian@espressif.com >
2026-03-16 16:38:26 +08:00
Ashish Sharma
5edf434f2e
docs: adds RSA DS docs for PSA Migration
2026-03-16 16:38:26 +08:00
Tomáš Rohlínek
405b82921d
feat(storage/vfs): Document context-less API deprecation
2026-03-11 11:04:34 +01:00
He Binglin
c37304c910
Merge branch 'change/esp_idf_uart_wakeup_refactor' into 'master'
...
Change: derecate uart wakeup old config apis and add modes descriptions in docs
Closes PM-408 and PM-669
See merge request espressif/esp-idf!45862
2026-03-06 17:33:44 +08:00
morris
018fc14824
doc: remove outdated diagrams for DAC, I2C, and I2S in documentation
2026-03-06 13:24:49 +08:00
hebinglin
01fa2032a6
feat(doc): add uart wakeup migration guides
2026-03-06 11:23:27 +08:00
Zhang Shuxian
b97cdc8183
docs: Update CN translation for pthread
2026-02-24 19:00:17 +08:00
Martin Vychodil
0fd5bae048
Merge branch 'refactor/fatfs_vfs_change_esp_vfs_fat_register_prototype' into 'master'
...
refactor(fatfs): Update esp_vfs_fat_register function prototype
Closes IDF-9212 and DOC-12416
See merge request espressif/esp-idf!41953
2026-02-20 03:07:35 +08:00
Ashish Sharma
8a8c4c175e
fix(mbedtls): enable pthread threading by default
2026-02-11 17:59:04 +08:00
Chen Ji Chang
7a8a5d8852
Merge branch 'test/parlio_flash_enc_test' into 'master'
...
test(parlio,rmt,lcd): add virtual flash encryption test
Closes IDF-15064, IDF-15065, and IDF-15069
See merge request espressif/esp-idf!45006
2026-02-06 19:26:22 +08:00
Aditya Patwardhan
ce0597161e
Merge branch 'refactor/remove_esp_wolfssl_from_esp_tls' into 'master'
...
feat(esp-tls): Added support to register custom tls stack
Closes IDF-11266
See merge request espressif/esp-idf!44342
2026-02-05 16:04:34 +05:30
Chen Jichang
b8c527a87c
refactor(flash_enc): move esp_flash_encryption_enabled() to efuse component
2026-02-05 11:42:08 +08:00
Adam Múdry
38256a6b11
refactor(fatfs): Update esp_vfs_fat_register function prototype
...
to match esp_vfs_fat_register_cfg
2026-02-04 16:33:40 +01:00
renpeiying
f965e08ac5
docs: Update CN translation
2026-02-04 13:53:29 +05:30
Aditya Patwardhan
8694115a75
feat(docs): Added migration guide
2026-02-04 13:53:29 +05:30
Ashish Sharma
08f02b0faa
change(mbedtls): update mbedTLS default configs
...
1. Disables MBEDTLS_ARIA_C by default
2. SECP192R1 support is disabled by default
2026-02-03 14:55:44 +08:00
Wu Zheng Hui
13730111e3
Merge branch 'fix/make_deepsleep_gpio_wakeup_usable_for_pd_top_lightsleep' into 'master'
...
change(esp_hw_support): deepsleep gpio wakeup API renaming to support PD_TOP lightsleep wakeup
See merge request espressif/esp-idf!38712
2026-02-02 10:38:11 +08:00
Michael (XIAO Xufeng)
5984b29af5
Merge branch 'refactor/spi_flash_private' into 'master'
...
refactor(spi_flash): reorganize header files, improve encapsulation and simplify ROM implementation
See merge request espressif/esp-idf!44347
2026-01-28 17:39:51 +08:00
Marius Vikhammer
79950e4783
docs(esp32s31): add support for building docs for esp32s31
2026-01-28 09:42:24 +08:00
gaoxu
b53427075e
refactor(cam): use fourcc for cam format
2026-01-26 11:37:06 +08:00
morris
f621cc4fff
Merge branch 'feat/esp_driver_dma' into 'master'
...
feat(dma): graduate the dma driver from esp_hw_support to esp_driver_dma
See merge request espressif/esp-idf!45314
2026-01-23 09:57:22 +08:00
Xiao Xufeng
8dbf23630a
refactor(spi_flash): reorganize header files and improve API encapsulation
...
This commit reorganizes SPI flash header files to better reflect their
visibility and intended usage:
1. Rename `esp_flash_port/` to `esp_flash_chips/`:
- Better reflects that these headers are for chip driver implementations
- All chip driver headers moved to `esp_flash_chips/` directory
- Added README.md explaining semi-public nature of these headers
2. Move internal headers to `esp_private/`:
- `esp_flash_internal.h` -> `esp_private/esp_flash_internal.h`
- `memspi_host_driver.h` -> `esp_private/memspi_host_driver.h`
3. Move chip driver related headers to `esp_flash_chips/`:
- `esp_private/esp_flash_types.h` -> `esp_flash_chips/esp_flash_types.h`
- `spi_flash/spi_flash_defs.h` -> `esp_flash_chips/spi_flash_defs.h`
- `spi_flash_override.h` -> `esp_flash_chips/spi_flash_override.h`
- All `spi_flash_chip_*.h` headers moved to `esp_flash_chips/`
4. Code improvements:
- Remove unused includes (e.g., `spi_flash_override.h` from `cache_utils.c`)
- Use public API `esp_flash_get_size()` instead of direct member access
- Add `esp_flash_is_quad_mode` to linker.lf for IRAM placement
5. Documentation updates:
- Add README.md in `esp_flash_chips/` explaining semi-public headers
- Update programming guide with warnings about internal headers
- Update both English and Chinese documentation
6. Update all references across the codebase:
- Update includes in `spi_flash` component
- Update `bootloader_support`, `app_update`, `esp_tee`, `espcoredump`
- Update example projects
Breaking changes:
- Headers moved to new locations require include path updates
- `custom_flash_driver` example temporarily disabled until external
components are updated
2026-01-23 03:38:54 +08:00
Tomas Rohlinek
059f49ceff
Merge branch 'docs/fatfs_change_of_defaults' into 'master'
...
docs(storage): Update migration guide
Closes IDF-14188
See merge request espressif/esp-idf!44396
2026-01-22 15:08:02 +01:00
morris
35bdd8c651
feat(dma): graduate the dma driver from esp_hw_support to esp_driver_dma
2026-01-22 14:14:14 +08:00
wuzhenghui
4c996ca231
change(esp_hw_support): deprecate esp_deep_sleep_enable_gpio_wakeup API
...
rename esp_deep_sleep_enable_gpio_wakeup to esp_sleep_enable_gpio_wakeup_on_hp_periph_powerdown
rename esp_deepsleep_gpio_wake_up_mode_t to esp_sleep_gpio_wake_up_mode_t
2026-01-21 19:48:26 +08:00
wuzhenghui
78b3fca2b4
change(esp_driver_gpio): deprecate gpio_deep_sleep_wakeup_enable/disable API
...
rename gpio_deep_sleep_wakeup_enable to gpio_wakeup_enable_on_hp_periph_powerdown_sleep
rename gpio_deep_sleep_wakeup_disable to gpio_wakeup_disable_on_hp_periph_powerdown_sleep
rename GPIO_IS_DEEP_SLEEP_WAKEUP_VALID_GPIO to GPIO_IS_HP_PERIPH_PD_WAKEUP_VALID_IO
2026-01-21 19:48:25 +08:00
harshal.patil
e9ea55bea2
feat(mbedtls/ecdsa): Introduce PSA ECDSA driver
2026-01-19 09:14:37 +05:30
morris
8e8d83a167
Merge branch 'feat/remove_sdm_set_duty_api' into 'master'
...
feat(sdm): remove `sdm_channel_set_duty` API
Closes IDF-15132
See merge request espressif/esp-idf!45057
2026-01-14 08:57:34 +08:00
Chen Chen
60284a9c86
feat(sdm): remove sdm_channel_set_duty API
2026-01-13 16:26:57 +08:00
Ondrej Kosta
a45f42de7c
Merge branch 'feat/esp32p4_eco5_emac' into 'master'
...
Added PTP PPS Feature
Closes IDF-13513
See merge request espressif/esp-idf!44345
2026-01-13 16:24:09 +08:00
Ondrej Kosta
f8b055bd11
feat(esp_eth): added PTP EMAC PPS0 support on ESP32P4v3
...
feat(esp_eth): added options to configure PTP module
feat(esp_eth): removed all PTP ioctl commands and created API
2026-01-12 17:13:25 +08:00
Tomáš Rohlínek
f2a655b866
docs(storage): Update migration guide
2026-01-08 08:49:47 +01:00
Zhang Shuxian
a68b0c60d5
docs: Sync translation update for PSA migration
2026-01-08 14:09:38 +08:00
yangfeng
322984c0cb
docs(bt): update Classic Bluetooth api reference of A2DP
2026-01-07 20:18:02 +08:00
Mahavir Jain
a6375c0db4
fix(mbedtls): misc updates post PSA crypto migration
2025-12-30 09:31:49 +05:30
Ashish Sharma
608a0e05c7
docs: adds migration guide for PSA APIs
2025-12-30 09:31:49 +05:30
Shen Mengjing
17874b7955
docs: Sync four CN and EN docs
2025-12-26 14:22:41 +08:00
Ren Peiying
5c0c17231c
Merge branch 'docs/add_cn_trans_for_stdio_and_system' into 'master'
...
docs: Update translation for system, add translation for stdio.rst
Closes DOC-13272
See merge request espressif/esp-idf!44391
2025-12-25 19:22:47 +08:00
Song Ruo Jing
643b2508fa
refactor(uart): remove soc/uart_channel.h
2025-12-25 14:42:43 +08:00
yinqingzhao
a6b2eb6ad0
refactor(wifi): remove enum values WIFI_BW_HT20 and WIFI_BW_HT40
2025-12-24 14:11:52 +08:00
Wang Ning
9f10058395
Docs: Update Get Started for EIM
2025-12-23 22:29:08 +08:00
gongyantao
32fa421cfc
change(bt): Mark RSSI threshold-related macros as deprecated
2025-12-22 15:13:19 +08:00
renpeiying
4f30d217dd
Update according to review
2025-12-22 14:15:49 +08:00
renpeiying
7044dfc1a9
docs: Update translation for system, add translation for stdio.rst
2025-12-18 17:56:19 +08:00
Tomas Rohlinek
203c4da5f8
Merge branch 'feat/vfs_remove_old_api' into 'master'
...
feat(storage/vfs): v6 API breaking changes
Closes DOC-13273
See merge request espressif/esp-idf!42182
2025-12-17 20:21:27 +01:00
Tomáš Rohlínek
18c5aa7b80
docs(storage/vfs): Add migration guide for breaking changes
2025-12-16 17:48:55 +08:00