Gao Xu
|
f638d5e075
|
Merge branch 'contrib/github_pr_16130' into 'master'
esp_adc: Release the peripheral after calibration (GitHub PR)
Closes IDFGH-15489
See merge request espressif/esp-idf!39895
|
2025-06-19 20:49:22 +08:00 |
|
gaoxu
|
afadb17ed8
|
fix(adc): fix P4 ADC2 oneshot error and refactor apb claim macor
|
2025-06-19 14:20:20 +08:00 |
|
Song Ruo Jing
|
e6e629e475
|
Merge branch 'feature/esp32h21_clock_support' into 'master'
feat(clk): Add basic clock support for esp32h21
Closes IDF-11521, IDF-11906, and IDF-12114
See merge request espressif/esp-idf!39066
|
2025-06-16 21:48:36 +08:00 |
|
C.S.M
|
f4a45a30b5
|
Merge branch 'refactor/remove_tsens_legacy' into 'master'
refactor(temperature_sensor): Remove legacy temperature sensor driver
Closes IDF-12570 and IDF-13366
See merge request espressif/esp-idf!39840
|
2025-06-16 16:09:40 +08:00 |
|
Song Ruo Jing
|
6d293c8582
|
feat(clk): Add basic clock support for esp32h21
|
2025-06-16 15:05:32 +08:00 |
|
morris
|
2fb938c7c3
|
Merge branch 'feature/utilize_rom_gpio_function' into 'master'
feat(gpio): esp_rom_gpio_connect_in/out_signal now has their hal implementation
Closes IDFGH-15397
See merge request espressif/esp-idf!39383
|
2025-06-16 12:17:40 +08:00 |
|
C.S.M
|
bdf4dafe56
|
fix(soc): Fix wrong efuse register on esp32c61
|
2025-06-16 10:58:53 +08:00 |
|
C.S.M
|
caf1a18188
|
refactor(temperature_sensor): Move calibration function from efuse to hal
|
2025-06-16 10:58:11 +08:00 |
|
gaoxu
|
49df6a8b77
|
fix(adc): fix adc calibration error on c5
|
2025-06-12 16:56:12 +08:00 |
|
Song Ruo Jing
|
3e2945b595
|
fix(gpio): remove GPIO_OUTPUT_SET macro for ESP32P4
Use GPIO_OUTPUT_SET led to compilation error
Closes https://github.com/espressif/esp-idf/issues/16050
|
2025-06-11 20:56:12 +08:00 |
|
Song Ruo Jing
|
60bef64f5c
|
feat(gpio): esp_rom_gpio_connect_in/out_signal now has their hal implementation
|
2025-06-11 20:41:37 +08:00 |
|
morris
|
2fbb86deb7
|
feat(axi): add low level function for adjusting the arbitration priority
|
2025-06-10 10:32:01 +08:00 |
|
C.S.M
|
724ce1fc97
|
Merge branch 'feature/suspend_support_c5_c61' into 'master'
feat(spi_flash): Add spi flash suspend support on esp32c5, esp32c61
Closes IDF-12879 and IDF-12635
See merge request espressif/esp-idf!39652
|
2025-06-09 14:30:02 +08:00 |
|
Aditya Patwardhan
|
8d0527d7bf
|
Merge branch 'feat/support_sha512_for_esp32c5' into 'master'
Support SHA 512 for ESP32-C5
See merge request espressif/esp-idf!39421
|
2025-06-09 09:42:37 +05:30 |
|
Laukik Hase
|
0d8a1f5427
|
refactor(hal): Refactor the APM LL/HAL APIs
|
2025-06-06 18:28:47 +05:30 |
|
harshal.patil
|
fe78370ec9
|
feat(mbedtls/sha): New API for setting SHA mode
|
2025-06-06 14:51:44 +05:30 |
|
harshal.patil
|
afdf1a31c8
|
feat(soc): Update ESP32-C5 ECO2 to support SHA512
|
2025-06-06 14:51:44 +05:30 |
|
C.S.M
|
b194636859
|
feat(spi_flash): Add spi flash suspend support on esp32c5, esp32c61
|
2025-06-06 15:03:41 +08:00 |
|
Chen Ji Chang
|
713a63fb9f
|
Merge branch 'feat/gdma_weight_based_arbitration' into 'master'
feat(gdma): support gdma weighted arbitration on C5 ECO2
Closes IDF-8007
See merge request espressif/esp-idf!32826
|
2025-05-29 19:59:44 +08:00 |
|
Chen Jichang
|
16d25b4a52
|
feat(gdma): support gdma weighted arbitration on ESP32C5
|
2025-05-29 11:41:02 +08:00 |
|
wuzhenghui
|
34f249a28b
|
feat(esp_hw_support): support esp_perip_clk_init for esp32c5
|
2025-05-27 19:55:22 +08:00 |
|
morris
|
6d502b710c
|
Merge branch 'bugfix/fix_lcd_ll_macro_safety' into 'master'
fix(hal): Wrap LL macros with atomic env in do-while for control safety
Closes IDF-11981
See merge request espressif/esp-idf!39202
|
2025-05-26 19:06:11 +08:00 |
|
Nilesh Kale
|
fa7c9b63b1
|
Merge branch 'feature/enable_support_for_deterministic_mode_and_ecdsa_192' into 'master'
enable support for deterministic mode and ecdsa 192 in ESP32H2
Closes IDF-12011, IDF-13065, and DOC-11194
See merge request espressif/esp-idf!39103
|
2025-05-23 15:19:08 +08:00 |
|
nilesh.kale
|
148d31b659
|
feat: enable support for deterministic mode for esp32h2
|
2025-05-22 14:55:15 +05:30 |
|
Yuan Yu
|
18091976ec
|
fix(hal): Wrap LL macros with atomic env in do-while for control safety
- Standardize all LL macros using atomic env variables with `do { ... } while (0)`
- Prevent potential macro misuse in control flow constructs (e.g., if/else)
- Affected targets: esp32, esp32c2, esp32c5, esp32s3, esp32p4, etc.
- Affected modules include: LCD, I2S, TIMER, and others
|
2025-05-22 14:42:11 +08:00 |
|
Armando (Dou Yiwen)
|
dadcc7b9f3
|
Merge branch 'feat/c5_eco2_psram_timing_tuning' into 'master'
mspi: psram 80M timing tuning on C5 ECO2
Closes IDF-13003
See merge request espressif/esp-idf!39232
|
2025-05-22 06:41:56 +00:00 |
|
armando
|
00e3f4885a
|
feat(mspi): supported psram 80MHz timing tuning
|
2025-05-22 10:27:19 +08:00 |
|
Song Ruo Jing
|
0631340e2c
|
Merge branch 'feature/esp32h21_regi2c_support' into 'master'
feat(regi2c): add regi2c support for esp32h21
Closes IDF-11550 and IDF-11858
See merge request espressif/esp-idf!37369
|
2025-05-21 11:22:07 +08:00 |
|
morris
|
d46019bf43
|
refactor(bitscrambler): don't use Reset Clock Control lock of RC version
|
2025-05-20 16:52:32 +08:00 |
|
Song Ruo Jing
|
8262915e28
|
refactor(regi2c): remove regi2c_defs.h from some targets
|
2025-05-19 21:46:40 +08:00 |
|
Song Ruo Jing
|
9ef152c220
|
feat(regi2c): add regi2c support for esp32h21
|
2025-05-19 21:46:40 +08:00 |
|
C.S.M
|
f3147df360
|
Merge branch 'refactor/remove_i2c_slave_v1_s1' into 'master'
refactor(i2c): Replace i2c test from version one to version two
See merge request espressif/esp-idf!39085
|
2025-05-19 16:49:10 +08:00 |
|
Sudeep Mohanty
|
a7e61220a1
|
Merge branch 'fix/lp_periph_use_int_raw' into 'master'
change(lp-core): Update LP I2C and LP UART drivers to use raw interrupt status
See merge request espressif/esp-idf!39008
|
2025-05-19 10:31:03 +02:00 |
|
C.S.M
|
660244e6ee
|
refactor(i2c): Replace i2c test from version one to version two
|
2025-05-19 14:13:10 +08:00 |
|
Gao Xu
|
733c0586bc
|
Merge branch 'refactor/rng_ll_p4' into 'master'
refactor(rng): refactor to use hal/ll apis for P4
Closes IDF-12476
See merge request espressif/esp-idf!38119
|
2025-05-15 11:30:54 +08:00 |
|
gaoxu
|
e1b6493304
|
feat(adc): add always inline for adc ll functions called by bootloader
|
2025-05-14 13:45:55 +08:00 |
|
Sudeep Mohanty
|
0f45b6c6c3
|
change(lp-core): Update LP I2C and LP UART drivers to use raw interrupt status
This commit updates the LP I2C and LP UART drivers to use the raw
interrupt status without enabling the interrupts.
|
2025-05-13 15:43:39 +02:00 |
|
Konstantin Kondrashov
|
01e9f8f33a
|
Merge branch 'feature/support_efuse_esp32c5_eco2' into 'master'
feat(efuse): Support efuses for ESP32-C5 ECO2
Closes IDF-12854
See merge request espressif/esp-idf!38925
|
2025-05-09 20:02:13 +08:00 |
|
Konstantin Kondrashov
|
3a72305e50
|
feat(efuse): Support efuses for ESP32-C5 ECO2
|
2025-05-09 09:29:31 +03:00 |
|
morris
|
2ea460df56
|
test(twai): ensure the bitrate correctness by uart baudrate detector
|
2025-05-08 22:35:16 +08:00 |
|
hongshuqing
|
6a7191b2d9
|
feat(pmu): support ldo dbias & ocode read from efuse for chip752mp
|
2025-05-07 20:13:11 +08:00 |
|
Armando (Dou Yiwen)
|
67e5e59de3
|
Merge branch 'feat/c5_sdio' into 'master'
sdio: supported on c5
Closes IDF-12655 and IDF-12641
See merge request espressif/esp-idf!38652
|
2025-05-01 11:52:21 +08:00 |
|
Wan Lei
|
a16f621ed2
|
Merge branch 'feat/twai_driver_legacy_target_support' into 'master'
feat(driver_twai): twai driver legacy target support (part_2)
Closes IDF-12480 and IDF-12808
See merge request espressif/esp-idf!36487
|
2025-05-01 11:05:11 +08:00 |
|
Aditya Patwardhan
|
d3e3790fc9
|
Merge branch 'fix/refactor_source_code_and_comments' into 'master'
fix(hal): updated API description and added comments
Closes IDF-12618
See merge request espressif/esp-idf!38415
|
2025-04-30 18:26:57 +08:00 |
|
morris
|
4312734f27
|
Merge branch 'feat/re_support_pcnt_on_c5' into 'master'
feat(pcnt): re-support pcnt on ESP32-C5 V1.0
Closes IDF-8683, IDF-12831, and IDF-12634
See merge request espressif/esp-idf!38547
|
2025-04-30 15:24:44 +08:00 |
|
armando
|
69164ed912
|
feat(sdio): supported sdio on esp32c5
|
2025-04-30 14:48:28 +08:00 |
|
wanckl
|
8a60934c4f
|
feat(driver_twai): support legacy targets in new driver
|
2025-04-30 10:38:55 +08:00 |
|
Li Shuai
|
40e1abf7b1
|
Merge branch 'bugfix/idf-12854' into 'master'
Revert the change of force return efuse controller state idle
Closes IDF-12854
See merge request espressif/esp-idf!38825
|
2025-04-29 22:16:00 +08:00 |
|
C.S.M
|
8344af1f09
|
Merge branch 'feat/support_length_eof' into 'master'
feat(uhci): Add UHCI support on esp32c5, esp32h2.
See merge request espressif/esp-idf!38794
|
2025-04-29 14:34:58 +08:00 |
|
Li Shuai
|
6411ed0325
|
Revert "change(efuse): force return efuse controller state idle before efuse is supported"
This reverts commit 36776a15ef .
|
2025-04-29 14:26:45 +08:00 |
|