Wan Lei
fe3c676d13
Merge branch 'feature/h4_spi_support' into 'master'
...
feat(driver_spi): support esp32h4 spi driver
Closes IDF-12362, IDF-12364, IDF-12366, and IDF-11521
See merge request espressif/esp-idf!40862
2025-08-06 16:26:34 +08:00
morris
6ea0fa1a57
Merge branch 'refactor/remove_lcd_deprecated' into 'master'
...
esp_lcd clean up
Closes IDF-13711, IDF-13712, IDF-13713, IDF-13714, and IDF-13715
See merge request espressif/esp-idf!40848
2025-08-06 10:41:20 +08:00
Harshal Patil
eae2f70381
Merge branch 'change/remove_esp_security_dependency_from_esp_hw_support' into 'master'
...
Move security-related modules present in esp_hw_support component to esp_security
Closes IDF-10733
See merge request espressif/esp-idf!39490
2025-08-06 06:27:12 +05:30
Alexey Lapshin
44aeff1319
Merge branch 'feature/libc_init_array-from-toolchain' into 'master'
...
fix(esp_system): fix .init_array.*/.ctors.* ordering
Closes IDF-1176 and DOC-11527
See merge request espressif/esp-idf!39811
2025-08-05 16:09:00 +04:00
morris
8a3aef7542
refactor(lcd): simplify the spi_lcd_touch example
2025-08-05 15:09:40 +08:00
morris
414dba5009
refactor(lcd)!: remove deprecated types
2025-08-05 15:09:40 +08:00
wanckl
37c6608ab3
feat(driver_spi): support esp32h4 spi driver
2025-08-05 15:08:02 +08:00
Roland Dobai
138336b9c6
Merge branch 'feat/deprecate-py39' into 'master'
...
Tools: Deprecate Python 3.9
Closes IDF-7996
See merge request espressif/esp-idf!40851
2025-08-04 15:13:55 +02:00
harshal.patil
60ff4bca9b
refactor(esp_system): Update all references of the memory protection configs
2025-08-04 11:43:01 +05:30
harshal.patil
55e0730a8d
change(esp_hw_support): Move security-related modules to the esp_security component
...
- Also adds support to whitelist target specific expected dependency violations
in check_dependencies.py
2025-08-04 11:43:01 +05:30
Zhang Shuxian
1d1bba2164
docs: Update cn translation for build-system.rst
2025-08-04 11:33:44 +08:00
Alexey Lapshin
019dc93ae0
feat(esp_system): switch to standard __libc_init_array initialization
...
Initially, ESP-IDF used the do_global_ctors() function to run global
constructors. This was done to accommodate Xtensa targets that emit
.ctors.* sections, which are ordered in descending order.
For RISC-V, compilation used .init_array.* sections, which are designed
to have ascending order. Priority constructors in .init_array.* sections
were correctly processed in ascending order. However, non-priority
.init_array section was processed in descending order, as it was done
for Xtensa .ctors.
Starting with ESP-IDF v6.0, the implementation switched to the standard
LibC behavior (__libc_init_array()), which processes both priority and
non-priority constructors in ascending order.
To achieve this, a breaking changes were introduced:
- Xtensa .ctors.* priority entries converted to .init_array.* format
(ascending), to be passed to __libc_init_array().
- Processing order of non-priority .init_array and .ctors sections was
changed from descending to ascending.
Also, this change introduces .preinit_array for linking. This may be
needed for some C++ or sanitizer features.
Related to https://github.com/espressif/esp-idf/issues/15529
2025-08-04 11:33:44 +08:00
Gao Xu
819970f439
Merge branch 'fix/correct_adc_periph_num_on_c2' into 'master'
...
fix(adc): fix ESP32-C2/P4 wrong adc periph num
See merge request espressif/esp-idf!40542
2025-08-03 14:45:23 +08:00
Shen Mengjing
a091b84298
docs: Edit the CN translation
2025-08-01 16:40:35 +08:00
Chen Ji Chang
ee779a0b72
Merge branch 'feat/support_twai_on_h21' into 'master'
...
feat(twai): support twai on esp32h21
Closes IDF-11574 and IDF-11575
See merge request espressif/esp-idf!40888
2025-08-01 15:35:35 +08:00
Shen Mengjing
cbd1ede64c
docs: Update CN translation for linux-macos-setup.rst
2025-08-01 14:39:42 +08:00
Peter Dragun
519042a1e2
feat: Deprecate Python 3.9
...
BREAKING CHANGE:
- Minimal supported Python version is now 3.10.
2025-08-01 08:05:10 +02:00
Alex Lisitsyn
be5e48bf83
Merge branch 'feature/modbus_remove_examples' into 'master'
...
remove(modbus): remove modbus examples in IDF v6.0
Closes IDF-13491
See merge request espressif/esp-idf!40477
2025-07-31 14:44:33 +01:00
Song Ruo Jing
e94d9cee7a
Merge branch 'refactor/rtc_cal_clk' into 'master'
...
refactor(clk): add soc_clk_calibration_clk_src_t for all targets
Closes IDF-11790
See merge request espressif/esp-idf!40737
2025-07-31 19:49:17 +08:00
aleks
50e724a534
remove(modbus): remove modbus examples in IDF v6.0
2025-07-31 18:10:34 +08:00
Aditya Patwardhan
a783974d00
Merge branch 'feat/support_authentication_feature_for_ws' into 'master'
...
Added pre handshake callback for websocket
Closes IDF-13605
See merge request espressif/esp-idf!40706
2025-07-31 15:04:07 +05:30
hrushikesh.bhosale
a40ceffb19
feat(esp_http_server): Added pre handshake callback for websocket
...
1. If the user wants authenticate the request, then user needs to do
this before upgrading the protocol to websocket.
2. To achieve this, added pre_handshake_callack, which will execute
before handshake, i.e. before switching protocol.
2025-07-31 11:06:18 +05:30
Chen Jichang
b670fe9b50
feat(twai): support twai on esp32h21
2025-07-31 10:56:45 +08:00
Mo Fei Fei
9fe514f597
Merge branch 'docs/fix_rmt_loop_transmit_desc' into 'master'
...
docs: fix rmt loop transmit description
Closes DOC-11696
See merge request espressif/esp-idf!40905
2025-07-31 09:55:18 +08:00
Erhan Kurubas
521f3e3911
Merge branch 'coredump_breaking_changes' into 'master'
...
change(coredump): drop binary format and crc checksum
Closes IDF-9020 and IDFGH-14364
See merge request espressif/esp-idf!40324
2025-07-30 20:34:27 +02:00
Mahavir Jain
4e036983a7
Merge branch 'feat/restructure_mbedtls_configurations' into 'master'
...
Restructure mbedTLS configurations
Closes IDF-12984 and IDF-12982
See merge request espressif/esp-idf!39941
2025-07-30 20:11:11 +05:30
Song Ruo Jing
48233e0e7e
refactor(ledc): remove deprecated LEDC_USE_RTC8M_CLK macro for v6.0
2025-07-30 20:01:47 +08:00
Song Ruo Jing
f61e780f60
refactor(clk): deprecate rtc_cal_sel_t enum
2025-07-30 20:01:46 +08:00
Song Ruo Jing
07120c1d38
remove(clk): remove RTC_CLK_SRC_INT_RC32K option for C6 (v6.0)
2025-07-30 20:01:46 +08:00
Song Ruo Jing
248c87ac78
Merge branch 'bugfix/release_console_uart_pins' into 'master'
...
fix(console): release default console UART pins if console is switched in bootloader
Closes IDFGH-15851
See merge request espressif/esp-idf!40578
2025-07-30 19:27:47 +08:00
C.S.M
5611d88e6a
Merge branch 'feat/usb_serial_jtag_h21' into 'master'
...
feat(usb_serial_jtag): Add usb serial jtag support for esp32h21
Closes IDF-11616
See merge request espressif/esp-idf!40873
2025-07-30 18:46:55 +08:00
Ashish Sharma
d9c431268a
feat(mbedtls): restructure mbedtls configuration page
2025-07-30 17:47:54 +08:00
mofeifei
c654f653fd
docs: fix rmt loop transmit description
2025-07-30 15:24:02 +08:00
Chen Ji Chang
b0f22503b4
Merge branch 'feat/support_rmt_on_h21' into 'master'
...
feat(rmt): support rmt on esp32h21
Closes IDF-11622 and IDF-11623
See merge request espressif/esp-idf!40859
2025-07-30 12:24:47 +08:00
C.S.M
ef299a8d4e
feat(usb_serial_jtag): Add usb serial jtag support for esp32h21
2025-07-30 11:17:31 +08:00
renpeiying
d1df341c5d
docs: Update CN translation
2025-07-29 22:31:40 +03:00
Erhan Kurubas
a877a070cb
change(coredump): return ESP_ERR_NOT_FOUND for blank partition
...
Closes https://github.com/espressif/esp-idf/issues/15153
2025-07-29 22:31:40 +03:00
Erhan Kurubas
fb53d6e719
change(coredump): drop binary format and crc checksum
2025-07-29 22:31:40 +03:00
Song Ruo Jing
a4bd638385
refactor(uart): use U0RXD_GPIO_NUM and U0TXD_GPIO_NUM macros when possible
2025-07-29 21:59:49 +08:00
Chen Jichang
bbb78fedbb
feat(rmt): support rmt on esp32h21
2025-07-29 10:46:20 +08:00
C.S.M
df8a9d26c2
feat(usb_serial_jtag): Add usb serial jtag support for esp32h4
2025-07-28 15:12:38 +08:00
harshal.patil
35944b8a4d
docs(bootloader): Change the default value of maximum supported bootloader size
2025-07-24 15:56:41 +05:30
Harshal Patil
8ab9e36eec
Merge branch 'docs/update_bootloader_max_size' into 'master'
...
Update the maximum supported bootloader size
See merge request espressif/esp-idf!40506
2025-07-24 15:42:40 +05:30
Song Ruo Jing
3fdb473174
Merge branch 'bugfix/ledc_update_duty_wait' into 'master'
...
fix(ledc): duty_start update bit should wait for its self-clear before next set
Closes IDF-11989
See merge request espressif/esp-idf!39949
2025-07-24 14:55:16 +08:00
Mahavir Jain
22adc7ed75
Merge branch 'feat/secure_boot_ecdsa_p384' into 'master'
...
Support Secure Boot using ECDSA-P384 curve
Closes IDF-10016, IDF-10221, and IDF-12990
See merge request espressif/esp-idf!38517
2025-07-24 11:59:59 +05:30
morris
1f82b347a6
Merge branch 'feat/upgrade_restful_server_example' into 'master'
...
Upgrade restful server example (Vue2->Vue3) (The webpage is mostly done by AI with tons of prompts)
See merge request espressif/esp-idf!40669
2025-07-24 13:36:22 +08:00
harshal.patil
f4b329386f
docs(bootloader): Update the maximum supported bootloader size
2025-07-23 11:17:54 +05:30
Zhang Shuxian
b615ab5a40
docs: Update CN translation for secure boot
2025-07-22 19:14:46 +08:00
Song Ruo Jing
63e2d6828b
refactor(ledc): deprecate ledc_isr_register and ledc_channel_config_t::intr_type
2025-07-22 15:10:52 +08:00
Song Ruo Jing
dca8f204eb
refactor(ledc): remove deprecated API/macro for v6.0
2025-07-22 15:05:10 +08:00