Jiang Jiang Jian
2e0d1508c4
Merge branch 'bugfix/spp_deinit_crash_v5.0' into 'release/v5.0'
...
fix(bt/bluedroid): Fix the crash of invalid access to released resources (v5.0)
See merge request espressif/esp-idf!27252
2023-11-22 17:29:27 +08:00
Jiang Jiang Jian
d920052bf0
Merge branch 'feature/support_for_32_and_128_bit_custom_uuids_v5.0' into 'release/v5.0'
...
feat(bt/bluedroid): Add new APIs for 32 and 128-bit UUIDs (backport v5.0)
See merge request espressif/esp-idf!27231
2023-11-22 17:29:12 +08:00
Jiang Jiang Jian
12ee01fc87
Merge branch 'fix/wifi_prov_mgr_retry_auth_expire_v5.0' into 'release/v5.0'
...
fix (wifi_prov): Retry provisioning on `WIFI_AUTH_EXPIRE` event (v5.0)
See merge request espressif/esp-idf!26902
2023-11-22 17:27:13 +08:00
Jin Cheng
9998c2bd82
fix(bt/bluedroid): corrected the API documents of profile HFP and A2DP
2023-11-22 09:21:59 +00:00
Jin Cheng
4c8502e00d
fix(bt/bluedroid): Added some argument check in APIs of HFP AG
2023-11-22 09:21:59 +00:00
liuning
ac5ce8d02d
fix(wifi): fix wifi init reentrant issue
2023-11-22 16:58:55 +08:00
Jiang Jiang Jian
293cf4d332
Merge branch 'bugfix/s3_irom_addr_v5.0' into 'release/v5.0'
...
soc: fix SOC_IROM_MASK_HIGH for esp32s3 (v5.0)
See merge request espressif/esp-idf!27137
2023-11-22 13:58:47 +08:00
Jiang Jiang Jian
e4a38c3cba
Merge branch 'bugfix/fix_psram_access_faild_after_pd_cpu_wakeup_v5.0' into 'release/v5.0'
...
fix(esp_pm): fix psram access failed after pd_cpu wakeup if uart driver driven console is used (backport v5.0)
See merge request espressif/esp-idf!27054
2023-11-22 13:58:38 +08:00
luomanruo
1c0fb3bb4a
ble(fix): deinit crash issue
2023-11-22 03:13:43 +00:00
zwl
08e4757764
fix(ble): fixed ble occasional rx exception issue
2023-11-22 03:13:43 +00:00
luomanruo
1c261213d7
ble: update controller log module
2023-11-22 03:13:43 +00:00
luomanruo
30cd76b0f0
ble: update c2 lib to db4e1fb2
2023-11-22 03:13:43 +00:00
luomanruo
977b7f4bdb
ble(fix): Fixed the issue of not returning memory to the memory pool after deinit callout
...
ble(fix): Fixed the issue of not returning memory to the memory pool after deinit callout
2023-11-22 03:13:43 +00:00
Song Ruo Jing
c0a1d27858
fix(ledc): fix ledc driver 100% duty cycle configuration
...
Update ledc duty cycle value range in doxygen.
Fix duty configuration error at 100% duty cycle for ESP32.
Improve LEDC API doxygen.
Closes https://github.com/espressif/esp-idf/pull/11516
Closes https://github.com/espressif/esp-idf/issues/12593
Closes https://github.com/espressif/esp-idf/issues/12083
2023-11-22 03:12:38 +00:00
wuzhenghui
8c34ab0e67
fix(riscv): supports 1 byte and larger than 64byte range watchpoint setting
2023-11-22 03:12:06 +00:00
wuzhenghui
0a17593a7f
change(soc): rename SOC_CPU_WATCHPOINT_SIZE to SOC_CPU_WATCHPOINT_MAX_REGION_SIZE
2023-11-22 03:12:06 +00:00
Alexey Lapshin
686789de89
riscv: remove outdated macros
2023-11-22 03:12:06 +00:00
Alexey Lapshin
dacb36b422
riscv: fix trigger add from trap handlers
2023-11-22 03:12:06 +00:00
Alexey Lapshin
d3da497c74
riscv: fix & refactor triggers add/delete
2023-11-22 03:12:06 +00:00
Ilia Lutchenko
fffc6f9328
feat(bt/bluedroid): Add new APIs for 32 and 128-bit UUIDs
...
1. Added new API functions that can add 32 and 128-bit UUID to the EIR data
when these UUIDs are set in SDP.
The old functions that only work with 16-bit UUIDs have been left
unchanged to avoid having to redo code that already utilizes them.
2. Fixed bug with zero handler return in btc_sdp.c
sdp_create_record.handle in tBTA_SDP struct wasn't saved before.
Because of it Bluetooth stack always returned zero handler to
application callback.
Closes https://github.com/espressif/esp-idf/issues/11529
2023-11-22 03:10:00 +00:00
Jin Cheng
8ae138e7be
fix(bt/bluedroid): Fix the crash of invalid access to released resources
...
It is caused by the delayed timer is alarmed after esp_spp_deinit.
2023-11-22 03:09:13 +00:00
Jiang Jiang Jian
6c9c30f125
Merge branch 'bugfix/coex_deprecate_config_rename_v5.0' into 'release/v5.0'
...
fix(esp_coex): Fix deprecated configuration options not rename to new one (Backport v5.0)
See merge request espressif/esp-idf!27092
2023-11-22 11:07:00 +08:00
wuzhenghui
ea8b719288
fix(esp_hw_support): clear all type ULP wakeup intr status at ulp wakeup source enable
2023-11-22 03:06:03 +00:00
Erhan Kurubas
5f1d3790cc
fix(esp_hw_support): re-enable CONFIG_ESP_DEBUG_OCDAWARE functionality
2023-11-22 03:05:34 +00:00
Ivan Grokhotkov
c29f14e7b2
fix(console): switch USB PHY to OTG when OTG is used for console
...
On ESP32-S3 with the default efuse settings, USB PHY is connected to
the USB_SERIAL_JTAG peripheral. If USB OTG peripheral is used for the
console, we need to additionally switch the PHY to USB OTG, otherwise
we won't get any output.
Closes https://github.com/espressif/esp-idf/issues/12437
2023-11-22 03:04:13 +00:00
Ivan Grokhotkov
3fd3848932
fix(soc): update SOC_IROM_MASK_HIGH for esp32 for consistency
2023-11-22 03:03:35 +00:00
Ivan Grokhotkov
207996eb68
fix(soc): correct SOC_IROM_MASK_HIGH for esp32s3
...
Fixes corrupted backtraces on S3 when a function is in ROM.
Closes https://github.com/espressif/esp-idf/issues/11512
2023-11-22 03:03:35 +00:00
wuzhenghui
6de1e945c8
fix(esp_pm): fix psram access faild after pd_cpu wakeup
2023-11-22 03:02:06 +00:00
Kapil Gupta
a155523263
fix(wpa_supplicant): memzero wifi config before sending config event
2023-11-22 02:58:06 +00:00
Kapil Gupta
6383609e99
fix(wifi): Disallow DPP and WPS concurrency
2023-11-22 02:58:06 +00:00
xueyunfei
40f1ca7666
Fix(dhcps):fix dhcp subnet option api dos not work issue
2023-11-22 02:56:07 +00:00
Jiang Jiang Jian
35f09a6ce6
Merge branch 'bugfix/connect_before_connected_v5.0' into 'release/v5.0'
...
fix(connect): Change second connect time to 730
See merge request espressif/esp-idf!26974
2023-11-22 10:48:38 +08:00
Jiang Jiang Jian
13fdffbe98
Merge branch 'bugfix/pairing_when_enc_with_no_key_fails_v5.0' into 'release/v5.0'
...
fix(nimble): Initate pairing if encryption fails with reason no pin or key missing (v5.0)
See merge request espressif/esp-idf!27018
2023-11-22 10:47:22 +08:00
Island
6d77fe9b79
Merge branch 'backport/fix_ble_scan_rsp_v5.0' into 'release/v5.0'
...
Backport/fix ble scan rsp v5.0(backport v5.0)
See merge request espressif/esp-idf!27006
2023-11-21 12:15:09 +08:00
gongyantao
82aed29e59
ci(bt/bluedroid): remove configs that are not in effect
2023-11-21 10:11:12 +08:00
Island
a84ad081b2
Merge branch 'bugfix/fix_some_ble_bugs_v5.0' into 'release/v5.0'
...
Fixed some BLE bugs (backport v5.0)
See merge request espressif/esp-idf!27167
2023-11-17 10:34:35 +08:00
chenjianhua
50b49d856f
fix(bt): Update bt lib for ESP32-C3 and ESP32-S3(2758518)
...
- Fixed power state setting when entering modem sleep
2023-11-15 17:16:46 +08:00
chenjianhua
cd242a5e3e
Update bt lib for ESP32-C3 and ESP32-S3(f817304)
...
- Support get the range of TX power level
- Support clear legacy adv using vendor hci
2023-11-15 17:16:19 +08:00
zhanghaipeng
6bf79dfa8f
fix(ble/controller): Fix bugs in setting adv data and scan response data
2023-11-15 17:16:08 +08:00
chenjianhua
905da8f5bf
update esp32 bt-lib (6458728)
...
- Modify mesh proxy solic uuid to 0x18590303
- Support get the range of TX power level
- Support clear legacy adv using vendor hci
2023-11-15 17:15:16 +08:00
chenjianhua
8cc73fe6bf
feat(bt/bluedroid): support clear legacy advertising
2023-11-15 17:12:40 +08:00
Chen Yudong
81350e30f3
ci: fix assign test jobs
2023-11-15 05:49:32 +00:00
Chen Yudong
4d4b89755c
ci: add label rules for integration test
2023-11-15 05:49:32 +00:00
Chen Yudong
249468e5bc
ci: add qa-test-tag rules
2023-11-15 05:49:32 +00:00
Chen Yudong
29a2249170
ci: dynamic integration test child pipeline
2023-11-15 05:49:32 +00:00
Jiang Jiang Jian
3405065ed5
Merge branch 'bugfix/fix_deinit_init_wifi_scan_fail_issue_v5.0' into 'release/v5.0'
...
Bugfix/fix deinit init wifi scan fail issue v5.0(Backport v5.0)
See merge request espressif/esp-idf!27053
2023-11-14 15:27:26 +08:00
ding huan
856daf8a35
disable scan time set by esp_wifi_scan_start
2023-11-14 13:52:55 +08:00
ding huan
2542b74edd
fix(connect): Change second connect delay time to 730 and not depends on default value
2023-11-14 11:00:32 +08:00
Jiang Jiang Jian
e42bcf2e88
Merge branch 'bugfix/build_error_when_enable_ag_and_hf_v5.0' into 'release/v5.0'
...
fix(bt/bluedroid): Fix build error when both of the HFP roles are enabled (v5.0)
See merge request espressif/esp-idf!27078
2023-11-13 16:00:36 +08:00
Jiang Jiang Jian
33f8e6acea
Merge branch 'bugfix/fix_wifi_issue_v5.0' into 'release/v5.0'
...
esp_wifi: backport some wifi fix(v5.0)
See merge request espressif/esp-idf!27041
2023-11-13 15:59:54 +08:00