yinqingzhao
beebbada64
fix(wifi):esp32c6 wifi rx statistics is always zero
2024-05-20 11:47:43 +08:00
yinqingzhao
6da7a46bfa
fix(bss_color):fix bss color issues
2024-05-20 11:46:50 +08:00
liuning
d2551d6e4b
fix(wifi): fix esp32 unrecoverable m f issue
2024-05-20 11:46:08 +08:00
zhangyanjiao
4cf29dfcef
fix(wifi): fixed sniffer and espnow issue
...
1. fix(wifi): fixed sniffer dump fcs error packets fail
Closes https://github.com/espressif/esp-idf/issues/10777
2. fix(wifi): fixed the espnow priv parameter get error
Closes https://github.com/espressif/esp-idf/issues/13693
2024-05-20 11:44:48 +08:00
Shyamal Khachane
3dbba47d8c
fix(esp_wifi): Fix issues in NAN datapath establishment
...
1. Resolve indefinite waiting while stopping NAN
2. Increase NDP response timeout to 8 DW's
3. Set NAN discovery beacon interval to 100 TU's as per Section 9.2
of Wi-Fi Aware Specification v4.0
2024-05-20 11:43:58 +08:00
Nachiket Kukade
02c2356cb1
fix(esp_wifi): Fix issue in selecting FTM compensation with external AP
2024-05-20 11:43:18 +08:00
zhangyanjiao
8639f69ed7
fix(wifi): fix the tx issue when mesh packet lifetime remain equal to zero
2024-05-20 11:42:34 +08:00
morris
19ab395364
Merge branch 'feat/csi_dsi_example_v5.3' into 'release/v5.3'
...
example: csi dsi example and isp af dsi example(v5.3)
See merge request espressif/esp-idf!30913
2024-05-20 11:12:30 +08:00
Jiang Jiang Jian
a7266400be
Merge branch 'fix/freertos_scheduler_suspend_crit_v5.3' into 'release/v5.3'
...
fix(freertos/idf): Add missing critical sections to vTaskSuspendAll() (v5.3)
See merge request espressif/esp-idf!30922
2024-05-20 10:53:35 +08:00
Michael (XIAO Xufeng)
1847e53909
Merge branch 'bugfix/fix_isp_input_data_type_limit_v5.3' into 'release/v5.3'
...
fix(isp): updated to only support input data type as raw8 (v5.3)
See merge request espressif/esp-idf!30857
2024-05-20 10:15:21 +08:00
Mahavir Jain
285ba1fcf2
Merge branch 'fix/reduce-binary-size_v5.3' into 'release/v5.3'
...
Reduce binary size (v5.3)
See merge request espressif/esp-idf!30654
2024-05-20 01:09:17 +08:00
Mahavir Jain
5c9392d177
Merge branch 'bugfix/free_memory_if_failed_to_strart_http_server_v5.3' into 'release/v5.3'
...
fix(esp_https_server): fix memory leak during configuring http server (v5.3)
See merge request espressif/esp-idf!30662
2024-05-20 01:08:21 +08:00
Michael (XIAO Xufeng)
c91bdda9f3
Merge branch 'refactor/isp_af_interrupt_and_callback_v5.3' into 'release/v5.3'
...
refactor(isp): refactor the interrupt and callback solution (v5.3)
See merge request espressif/esp-idf!30565
2024-05-20 00:51:38 +08:00
Michael (XIAO Xufeng)
f63e544dc3
Merge branch 'feature/support_chip912_cpll_spll_eco1_v5.3' into 'release/v5.3'
...
feat: support(esp32p4_eco1): modify cpll and spll config (v5.3)
See merge request espressif/esp-idf!30783
2024-05-20 00:48:27 +08:00
Michael (XIAO Xufeng)
0680af1269
Merge branch 'feature/usj_support_p4_v5.3' into 'release/v5.3'
...
feature(usb_serial_jtag): add usb serial jtag support for esp32p4 (backport v5.3)
See merge request espressif/esp-idf!30793
2024-05-20 00:48:22 +08:00
Darian Leung
cbb43bb4c4
refactor(freertos/idf): Add critical section requirements to function description
...
This commit adds a note regarding the critical section calling requires of some
internal functions.
2024-05-17 22:43:35 +08:00
Darian Leung
0dc29caf4a
fix(freertos/idf): Add missing critical sections to vTaskSuspendAll()
...
vTaskSuspendAll() requires critical sections when building for SMP. Otherwise,
it is possible for a task to switch cores in between getting the core ID and
before incremented uxSchedulerSuspended.
2024-05-17 22:43:34 +08:00
Armando
e4f1c01197
fix(csi): fixed wrong assert when there's new transaction
2024-05-17 15:26:58 +08:00
Armando
2ed780b686
fix(isp): fixed af environment detector lack of configuration issue
2024-05-17 15:26:46 +08:00
Armando
8472467721
fix(isp): updated to only support input data type as raw8
2024-05-16 10:40:26 +08:00
Sudeep Mohanty
199dc389cc
fix(esp-tls): Fix compilation for linux target on macos
...
This commit fixes compilation errors for the esp-tls component for the
linux target on a MacOS system.
2024-05-13 13:44:25 +02:00
C.S.M
4dc565b7d0
feature(usb_serial_jtag): add usb serial jtag support for esp32p4
2024-05-13 12:19:14 +08:00
Xiao Xufeng
cbcd346171
feat(esp32p4): add eco1 revision config option
2024-05-11 11:46:08 +08:00
chaijie@espressif.com
f1d1dfd1ef
feat(esp32p4_eco1): modify cpll and spll config
2024-05-11 11:43:24 +08:00
laokaiyao
dd20d1f2b5
refactor(isp): refactor the interrupt and callback solution
...
- Added async API
- Replaced the polling API
- Supported one more callback and event data
2024-05-11 11:11:49 +08:00
Marius Vikhammer
ea010f84ef
Merge branch 'fix/freertos_vtasklist_param_order_v5.3' into 'release/v5.3'
...
fix(freertos): Fix vTaskList() parameter print order (v5.3)
See merge request espressif/esp-idf!30476
2024-05-09 16:48:24 +08:00
Jiang Jiang Jian
68a9c09c49
Merge branch 'bugfix/gcmp_mr_regression_v5.3' into 'release/v5.3'
...
fix(wifi): Fix issue of wrong Rx control information of espnow packets (Backport v5.3)
See merge request espressif/esp-idf!30739
2024-05-09 16:37:30 +08:00
Jiang Jiang Jian
53c4c08283
Merge branch 'bugfix/libphy_chips_20240430_v5.3' into 'release/v5.3'
...
update c3 s3 c6 libphy fix coex reset and bug
See merge request espressif/esp-idf!30725
2024-05-09 15:55:08 +08:00
Sarvesh Bodakhe
a9dcc3964d
fix(wifi): Fix issue of wrong Rx control information of espnow packets
...
Only for esp32 and esp32s2
2024-05-09 13:57:12 +08:00
Mahavir Jain
8503709d85
Merge branch 'feature/update_mbedtls_to_3.6.0_v5.3' into 'release/v5.3'
...
feat(mbedtls): updated mbedtls version from 3.5.2 to 3.6.0 (v5.3)
See merge request espressif/esp-idf!30668
2024-05-09 12:16:22 +08:00
liuning
4eacfd6ee1
update c3 s3 c6 libphy fix coex reset and bug
2024-05-09 11:57:56 +08:00
morris
7165a3bdbb
Merge branch 'feat/mipi_dsi_draw_pixel_round_boundary_v5.3' into 'release/v5.3'
...
feat(mipi_dsi): round to boundary when draw pixel (v5.3)
See merge request espressif/esp-idf!30694
2024-05-09 09:44:21 +08:00
Jiang Jiang Jian
ec50cd7d7e
Merge branch 'fix/backport_wifi_fixes_v5.3' into 'release/v5.3'
...
fix(wifi): backport wifi fixes to v5.3
See merge request espressif/esp-idf!30689
2024-05-08 19:16:26 +08:00
morris
b9f15ba3ab
feat(mipi_dsi): round to boundary when draw pixel
2024-05-08 16:31:51 +08:00
Armando
d22f9a97aa
change(camera): change esp_cam_del_ctlr to esp_cam_ctlr_del
2024-05-08 15:29:20 +08:00
Li Shuai
90188040fb
fix(esp_wifi): clear soc wakeup request signal at tbtt process
2024-05-08 13:44:54 +08:00
Sarvesh Bodakhe
ea1a10da17
fix(wifi): Fix issue in scan when AP advertises WPA and WPA2 with SAE AKM
2024-05-08 13:44:51 +08:00
Nachiket Kukade
7c54373146
feat(esp_wifi): Update FTM PHY Compensation with calibration
2024-05-08 13:42:23 +08:00
xuxiao
209fbfc18b
fix(wifi): fix trc_ampdu_stop_rateidx value errors when DUT under softap + sta mode
2024-05-08 13:42:10 +08:00
alanmaxwell
8545eeb4ef
fix(wifi): clear wifi buffer to fix ampdu compatibility issue
2024-05-08 13:41:58 +08:00
xuxiao
a22d0df155
fix(wifi): fix esp32c6 wdt issues when recv/send tcp packages
2024-05-08 13:41:36 +08:00
morris
c706096f45
Merge branch 'test/gdma_fetch_data_in_flash_v5.3' into 'release/v5.3'
...
test(gdma): can read data from flash rodata (v5.3)
See merge request espressif/esp-idf!30655
2024-05-08 10:50:53 +08:00
nilesh.kale
fe628d5951
feat(mbedtls): updated mbedtls version from 3.5.2 to 3.6.0
...
This MR updated MbedTLS version to latest version 3.6.0.
2024-05-07 14:16:21 +05:30
nilesh.kale
5428555092
fix(esp_https_server): fix memory leak during configuring http server
...
This MR This restructured code to prevent memory leak during the starting HTTP server.
Closes https://github.com/espressif/esp-idf/issues/13526
2024-05-07 13:51:38 +05:30
Cao Sen Miao
6b0a815b78
fix(jpeg): Fix several issues reported recently,
...
1. Fix decode images with dri marker failed,
2. Fix encode sometimes get length error
2024-05-07 13:58:18 +08:00
morris
a04f786380
test(gdma): can read data from flash rodata
2024-05-07 13:01:11 +08:00
morris
a6d8251366
feat(gdma): set default valid memory range for gdma
2024-05-07 13:00:39 +08:00
Alexey Lapshin
9fd92e8bf4
fix(cxx): use __cxa_throw() stub in case exceptions disabled
...
Reduces binary size since the linker will drop some code due to --gc-sections.
2024-05-07 08:52:36 +04:00
Alexey Lapshin
d42e894a74
fix(system): discard eh_frame sections if disabled in sdkconfig
2024-05-07 08:52:36 +04:00
Rahul Tank
bf415f580f
Merge branch 'bugfix/disable_mbedtls_options_v5.3' into 'release/v5.3'
...
fix(nimble): Deselect MBEDTLS_ECP_RESTARTABLE when mbedTLS is used (v5.3)
See merge request espressif/esp-idf!30618
2024-05-07 12:38:05 +08:00