laokaiyao
f949819976
adc_calib: support calibration v2 on esp32c6
2023-06-26 10:40:36 +08:00
Jiang Jiang Jian
51aaed8c22
Merge branch 'bugfix/resume_ext_scan_pti_in_time' into 'master'
...
bt: fix the issue that BLE scan uses high priority incorrectly and causes Wi-Fi unable to work normally on ESP32-C3 and ESP32-S3
Closes BT-3313
See merge request espressif/esp-idf!24184
2023-06-26 10:37:24 +08:00
Jiang Jiang Jian
d68898785a
Merge branch 'bugfix/alarm_not_free_when_a2dp_deinit' into 'master'
...
bugfix/Fixed the issue of alarm leak
See merge request espressif/esp-idf!24350
2023-06-26 10:21:32 +08:00
Radim Karniš
7edf6f16d1
Merge branch 'fix/pyparsing_3.1.0_compatibility' into 'master'
...
Fix: pyparsing>=3.1.0 compatibility
Closes IDF-7593
See merge request espressif/esp-idf!24329
2023-06-26 01:46:01 +08:00
zwl
4bf95fb638
ble: Fixed the issue of occasional failure to create sync on ESP32-H2
2023-06-25 21:42:41 +08:00
zwl
649ce4f5b0
ble: Fixed the issue of occasional failure to create sync on ESP32-C6
2023-06-25 21:37:58 +08:00
Shu Chen
6fc45d4978
Merge branch 'fix/phylib_rtc_printf' into 'master'
...
esp_phy: fix rtc_printf and libbtbb version print
See merge request espressif/esp-idf!24356
2023-06-25 20:05:23 +08:00
Darian
0e1bbb0138
Merge branch 'bugfix/ringbuf_static_object_size' into 'master'
...
Ringbuf: Fix ordering of StaticRingbuffer_t
Closes IDFGH-10479
See merge request espressif/esp-idf!24371
2023-06-25 19:28:53 +08:00
Nebojsa Cvetkovic
9956bfac3e
twai: twai_driver_install() returns error on interrupt allocation failure
...
This commit updates twai_driver_install() so that an error is returned when
esp_intr_alloc() fails, instead of aborting.
Closes https://github.com/espressif/esp-idf/pull/11494
[darian@espressif.com: Refactored object allocation and free procedures]
[darian@espressif.com: Updated commit message]
Signed-off-by: Darian Leung <darian@espressif.com>
2023-06-25 18:32:41 +08:00
Armando
4d5506a31b
soc: rename ana_i2c_mst_reg.h to i2c_ana_mst_reg.h
2023-06-25 17:31:18 +08:00
Armando
7250e397ac
soc: migrate system_reg.h, hp_sys_reg.h to hp_system_reg.h
2023-06-25 16:51:09 +08:00
Armando
b8df6d1973
soc: add io_mux_reg/struct.h
2023-06-25 16:51:09 +08:00
Cai Xin Ying
87a893dfd2
Merge branch 'docs/update_CN_translation_for_api-reference/network/esp_eth' into 'master'
...
Docs: update CN translation for api reference/network/esp-eth
Closes DOC-5522
See merge request espressif/esp-idf!24282
2023-06-25 16:49:49 +08:00
Cai Xin Ying
c9a60f3919
Docs: update CN translation for api reference/network/esp-eth
2023-06-25 16:49:49 +08:00
xiongweichao
2fa475bc2c
bt: Fixed some bluetooth bugs
...
1. Fixed LC_AFH_UPDATE_IND has not benn processed causing memory exhaustion
2. Fixed no free elt in prog push
3. Fixed disconnect due to sniff with error Dsniff
4. Fixed the problem that the host continued to send ACL data to the controller after disconnection, which caused the connection to fail again
2023-06-25 16:32:07 +08:00
xiongweichao
3fd18692a2
components/bt: Fix crash due to NULL point
2023-06-25 16:18:30 +08:00
morris
5f47ec4e0c
Merge branch 'doc/rgb_lcd_example_not_support_all_ICs' into 'master'
...
doc: state the rgb lcd example may need extra initialitions
Closes IDFGH-10489
See merge request espressif/esp-idf!24382
2023-06-25 15:49:15 +08:00
Jiang Jiang Jian
29a3f86536
Merge branch 'bugfix/nvs_get_sae_pwe_mismatch' into 'master'
...
esp_wifi: Bugfix NVS get values for sae_pwe
See merge request espressif/esp-idf!23878
2023-06-25 15:45:31 +08:00
Darian Leung
b104b52b0e
ringbuf: Fix ordering of StaticRingbuffer_t
...
When building on linux/host compilers (e.g., GCC), the compiler may add padding
depending on the size and order of the member types.
This commit fixes the ordering or the StaticRingbuffer_t such that it matches
the internal Ringbuffer_t. The "_Static_assert" is always enabled for all
compilers.
Closes https://github.com/espressif/esp-idf/issues/11726
2023-06-25 15:30:19 +08:00
Kevin (Lao Kaiyao)
c221ce331a
Merge branch 'bugfix/fix_i2s_ll_cpp_compilation_failure' into 'master'
...
i2s: fixed i2s_ll compiling failure under C++ environment
Closes IDFGH-10367 and IDFCI-1695
See merge request espressif/esp-idf!24242
2023-06-25 13:16:59 +08:00
wangmengyang
f6c41c5cca
bt-coexist: fix the issue for BLE scan in using whitelist that scan PTI keeps high and not resumes after reception of ADV_EXT_IND but no AUX_ADV_IND followed on ESP32-C3 and ESP32-S3, which causes Wi-Fi unable to work normally
2023-06-25 03:54:32 +00:00
morris
7f8404ed91
doc: state the rgb lcd example may need extra initialitions
...
Closes https://github.com/espressif/esp-idf/issues/11736
2023-06-25 11:16:39 +08:00
Armando
5a88a7da0e
soc: added soc headers for esp32p4, part 1
2023-06-25 10:35:15 +08:00
Wu Zheng Hui
c41abacb3a
Merge branch 'feature/enable_sleep_reject_for_deep_sleep' into 'master'
...
sleep: enable sleep reject when entering deepsleep
Closes WIFI-6010
See merge request espressif/esp-idf!24127
2023-06-25 00:02:32 +08:00
Darian
3d35fbe211
Merge branch 'bugfix/usb_hcd_interrupt_alloc_error_return' into 'master'
...
USB Host: Fix coverity issues with hcd_install()
Closes IDF-7442
See merge request espressif/esp-idf!24360
2023-06-24 03:49:01 +08:00
Mahavir Jain
1fc1f7a582
Merge branch 'fix_pre_encrypted_ota_with_updated_component' into 'master'
...
examples: pre_encrypted_ota: update to newer API from esp_encrypted_img component
See merge request espressif/esp-idf!24083
2023-06-24 01:11:20 +08:00
Harshit Malpani
b9caa324bc
examples: pre_encrypted_ota: update to newer API from esp_encrypted_img component
...
The members of the esp_decrypt_cfg_t configuration structure have been updated to correctly
reflect that we are using RSA private key member for the decryption purpose. Earlier their names were
incorrect. This old names have been marked as deprecated for IDF 5.2 release. This change can be viewed
at https://github.com/espressif/idf-extra-components/pull/187 and its part of esp_encrypted_img
component version 2.0.4
This commit updated to newer API usage from esp_encrypted_img component v2.0.4 for
pre_encrypted_ota example.
2023-06-23 21:04:41 +05:30
Martin Vychodil
9735e6147a
Merge branch 'revamp/wear_levelling_component' into 'master'
...
Revamp variable names and update code documentation for wear levelling component
See merge request espressif/esp-idf!23012
2023-06-23 19:29:25 +08:00
Shreyas Sheth
42f2cdb8e0
esp_wifi: Bugfix NVS get values for sae_pwe
2023-06-23 14:16:46 +05:30
harshal.patil
f0ae5bd25a
mbedtls: update submodule to include:
...
fix: mbedtls_ecdsa_can_do was not being defined when ECDSA_SIGN_ALT is defined but ECDSA_VERIFY_ALT is not defined causing mbedtls_ecdsa_verify_restartable to always fail.
feature: initial version of the sbom.yml file
2023-06-23 14:07:45 +05:30
Harshit Malpani
20ed23bcd0
CI: fix esp_http_client example failures in CI. Timeout was observed in the logs while performing HTTP requests. Changing the endpoint when testing in CI
2023-06-23 10:32:20 +05:30
Aditya Patwardhan
3f58defcc9
Merge branch 'contrib/github_pr_11724' into 'master'
...
esp_http_client: Fix unsigned integer overflow (GitHub PR)
Closes IDFGH-10477
See merge request espressif/esp-idf!24366
2023-06-23 12:53:22 +08:00
Mahavir Jain
62634fcced
Merge branch 'feature/add_documentation_for_external_flash_encryption' into 'master'
...
flash_encryption_docs: Add documentation regarding enabling flash encryption externally through espefuse tool
Closes IDF-7107
See merge request espressif/esp-idf!23220
2023-06-23 12:36:12 +08:00
laokaiyao
1b22591ea7
i2s: fixed i2s_ll compiling failure under C++ evironment
...
Closes: https://github.com/espressif/esp-idf/issues/11625
2023-06-23 11:41:43 +08:00
Aditya Patwardhan
d9b66226cd
docs/security: Separate documents under different subsection
2023-06-23 08:15:13 +05:30
Aditya Patwardhan
2a4fddb48b
docs/Security:Add references to second stage bootloader to avoid confusion bettwen
...
bootloader and 2nd stage bootloader
2023-06-22 17:18:08 +05:30
Island
1c53adf47b
Merge branch 'feature/walkthrough_for_htp_examples' into 'master'
...
Nimble: Added Example Walkthrough tutorial for HTP example in nimble
See merge request espressif/esp-idf!23965
2023-06-22 17:39:59 +08:00
Mahavir Jain
020bea7491
Merge branch 'contrib/github_pr_11715' into 'master'
...
esp_ota_ops.h: typo fix (GitHub PR)
Closes IDFGH-10468
See merge request espressif/esp-idf!24363
2023-06-22 01:53:04 +08:00
Radek Tandler
c48c6d2e6c
Merge branch 'bugfix/macos_build_error' into 'master'
...
build: fixed missing condition preventing linking libgcc when building using clang for linux target
See merge request espressif/esp-idf!24250
2023-06-22 00:03:03 +08:00
C.S.M
ce0d111b5e
Merge branch 'bugfix/temperature_weak_link_phy_xpd' into 'master'
...
temperature_sensor: make `phy_xpd_tsens` link to phy_lib on esp32c2
See merge request espressif/esp-idf!24320
2023-06-21 19:23:41 +08:00
Rahul Tank
0d5ce55e08
Nimble: Added Example Walkthrough tutorial for HTP example in nimble
2023-06-21 16:20:59 +05:30
Rahul Tank
9403cea79b
Merge branch 'docs/walkthrough_for_multi_adv_examples' into 'master'
...
Nimble: Added Example Walkthrough tutorial for Multi Adv example
See merge request espressif/esp-idf!23985
2023-06-21 18:40:32 +08:00
Darian Leung
a1ed398481
usb_host: Fix coverity issues with hcd_install()
...
- Use single "err_ret" variable for returning errors
- Simplify bail out procedure by using more labels
2023-06-21 17:50:20 +08:00
Chen Yu Dong
1efcd78077
Merge branch 'bugfix/connection_to_hidden_AP_fail' into 'master'
...
Fix connection to hidden AP in APSTA mode for C6
See merge request espressif/esp-idf!23912
2023-06-21 17:23:40 +08:00
Adam Múdry
098cab35e4
NVS: nvs_tool.py entry.data None check fix
2023-06-21 11:23:22 +02:00
Sudeep Mohanty
38c1759fb4
lp-core-uart: Added support for printf to the LP core
...
This commit adds a minimal logging driver for the LP core. The logging
driver provides a printf function which is built on top of the LP UART
driver. The commit also adds an example to demonstrate how to use print
statements in an LP core program.
2023-06-21 11:16:13 +02:00
Sudeep Mohanty
3638082670
lp-core-uart: Added LP UART support for LP core
...
This commit adds a UART driver for the LP core to interact with the LP
UART. The commit also adds an example to demonstrate the usage of the LP
UART driver.
2023-06-21 11:16:13 +02:00
Sonika Rathi
4585ff806a
Revamp variable names and update code documentation for wear levelling component
...
wear levelling code cleanup
2023-06-21 10:34:24 +02:00
Abhik Roy
ff0135448b
Merge branch 'examples/wifi_repeater' into 'master'
...
examples:Added example for NAT from Wifi AP to STA.
See merge request espressif/esp-idf!22567
2023-06-21 16:18:45 +08:00
Tomas Sebestik
d8c787ab4a
ci(danger): Add check for conventional commits
...
Add DangerJS check for convetional commit style.
Add conventional-precommit-linter hook
https://github.com/espressif/conventional-precommit-linter
2023-06-21 09:54:47 +02:00