Commit Graph

1903 Commits

Author SHA1 Message Date
Yuan Hong Hui
2fdc78b882 ble_mesh:example:Add command to test the function of duplicate exceptional list(v4.1) 2022-11-25 10:44:46 +08:00
Jiang Jiang Jian
7562fe1720 Merge branch 'bugfix/ble_mesh_console_memory_leak_test_forv4.1' into 'release/v4.1'
ble_mesh:example:fix memory leak(v4.1)

See merge request espressif/esp-idf!20041
2022-11-08 11:02:12 +08:00
Island
db6821665b Merge branch 'bugfix/remove_get_modle_and_get_comp_api_forv4.1' into 'release/v4.1'
ble_mesh:example:change the method of get model(for v4.1)

See merge request espressif/esp-idf!20396
2022-10-24 19:43:13 +08:00
Michael (XIAO Xufeng)
c5dfaec6b3 Merge branch 'feat/essl_extra_component_v4.1' into 'release/v4.1'
sdio/example: fixed the essl return value issue (v4.1)

See merge request espressif/esp-idf!20348
2022-10-14 16:19:41 +08:00
morris
63ac426644 Merge branch 'feature/modbus_master_fix_check_uart_set_pin_v41' into 'release/v4.1'
example/modbus_master: fix the assert for uart_set_pin (backport v4.1)

See merge request espressif/esp-idf!17627
2022-10-08 19:08:14 +08:00
Alex Lisitsyn
b17494c223 example/modbus_master: fix the assert for uart_set_pin (backport v4.1) 2022-10-08 19:08:14 +08:00
Suren Gabrielyan
4a432e03b1 mDNS: Improved example test stability 2022-09-28 18:23:15 +04:00
Yuan Hong Hui
4f424a6722 ble_mesh:example:change the method of get model 2022-09-28 15:37:11 +08:00
Michael (XIAO Xufeng)
43ec862944 sdio/example: fixed the essl return type issue 2022-09-26 19:43:03 +08:00
xiongweichao
c2411837d1 bt:Fixed sink not being able to output mono audio because it can only decode dual channel audio data 2022-09-09 17:49:00 +08:00
Yuan Hong Hui
3c815fe6d3 ble_mesh:example:fix memory leak 2022-09-08 16:37:40 +08:00
Island
94dddbd985 Merge branch 'bugfix/vendor_model_send_message_no_memory_forv4.1' into 'release/v4.1'
ble_mesh:example: free the memory of malloc (v4.1)

See merge request espressif/esp-idf!19188
2022-08-25 14:14:25 +08:00
Wang Meng Yang
7332be209c Merge branch 'bugfix/hfp_examples_not_work_with_default_sdkconfig_v4.1' into 'release/v4.1'
bugfix/set default number of sco connection to 1 (v4.1)

See merge request espressif/esp-idf!19588
2022-08-25 10:47:10 +08:00
Yuan Hong Hui
614950cf4a ble_mesh:ble mesh console support nimble 2022-08-17 14:42:52 +08:00
jincheng
190b864206 Fixed the failure of 'connect audio' operation in HFP examples with default SDK configuration
Due to the lack of synchronized connections, the hf_client can not create audio_connection to
hf_ag. Set default number of synchronized connection to 1.

Closes https://github.com/espressif/esp-idf/issues/9537
2022-08-17 10:15:54 +08:00
Alexey Gerenkov
af87ee2888 test/examples: Fixes expected GDB message upon thread hit breakpoint 2022-08-16 11:33:20 +03:00
wangjialiang
280f577a64 ble_mesh: doc: Restore missing ble mesh videos 2022-08-05 13:59:14 +08:00
Oleg Savchenko
53351fc7f4 fix write to null pointer if malloc failed 2022-08-02 20:20:14 +08:00
Yuan Hong Hui
16eabd6b18 ble_mesh:the memory requested by malloc has not benn released 2022-07-28 11:37:31 +08:00
Yuan Hong Hui
a36a41ea3f ble_mesh:change the location of print ready 2022-07-13 18:20:56 +08:00
Jiang Jiang Jian
06ef10f38a Merge branch 'bugfix/a2dp_source_not_stop_discovery_correctly_v4.1' into 'release/v4.1'
bugfix/avoid wrongly restart discovery in a2dp_source (v4.1)

See merge request espressif/esp-idf!18713
2022-07-10 15:52:05 +08:00
jincheng
9322cd93b8 avoid wrongly restart discovery 2022-07-08 14:19:07 +08:00
jincheng
cdb5e4345c lower the priority of application task of a2dp demo 2022-07-08 14:04:17 +08:00
Jiang Jiang Jian
047fcd2c90 Merge branch 'bugfix/ignore_pmf_capable_flag_v4.1' into 'release/v4.1'
Always connect Station in PMF mode if possible (Backport v4.1)

See merge request espressif/esp-idf!17539
2022-05-01 17:30:48 +08:00
Michael (XIAO Xufeng)
a1aa2f13b3 Merge branch 'bugfix/fix_x32k_startup_slow_bug_v4.1' into 'release/v4.1'
bugfix: Fix xtal 32k not oscillate or oscillate too slowly issue for esp32 (v4.1)

See merge request espressif/esp-idf!17592
2022-04-28 17:14:10 +08:00
Nachiket Kukade
ace7ea8173 esp_wifi: Always connect Station in PMF mode if possible
While using esp_wifi_set_config, flag pmf_capable defaults to 0.
Users may not bother to enable it, which prevents connection to a
WPA3 AP. Or the AP may reset into WPA3 mode failing the re-connection.
To ensure better security, deprecate the pmf_capable flag and set it to
true internally.
Additionally add API esp_wifi_disable_pmf_config to disable PMF for
debug purposes or to avoid PMF issues on AP side.
2022-04-12 17:48:47 +05:30
chaijie
9100cd558e ESP32: Fix xtal 32k not oscillate or oscillate too slowly issue
ESP32 in revision0 and revision1 uses touchpad to provide
current to oscillate xtal 32k. But revision2 and revision3
do not need to do that.
Note: touchpad can not work and toupad/ULP wakeup sources
are not available when toupad provides current to xtal 32k
2022-03-25 14:20:54 +08:00
Michael (XIAO Xufeng)
cd6ed488c8 example: fixed the issue that config struct is not properly initialized 2022-03-25 01:12:22 +08:00
Jiang Jiang Jian
7523759b30 Merge branch 'Bugfix/pppos_coonection_lost_v4.1' into 'release/v4.1'
Bugfix/PPPOS fix stack smashing, modify get operator and add access technology(backport v4.1)

See merge request espressif/esp-idf!14033
2022-03-03 10:48:35 +08:00
Jiang Jiang Jian
5c281ed18c Merge branch 'bugfix/wpa3_memory_leak_v4.1' into 'release/v4.1'
esp_wifi: Fix Some wifi bugs.(v4.1)

See merge request espressif/esp-idf!16560
2022-03-02 22:00:52 +08:00
Liu Han
4c30995b88 esp-modem: prefix the crash issue both bg96 and sim800l in OVERALL mode 2022-03-02 10:49:25 +01:00
Ash
a313f37b2d rename dce parameter
Merges https://github.com/espressif/esp-idf/pull/5750
Signed-off-by: Liu Han <liuhan@espressif.com>
2022-03-02 10:48:52 +01:00
Robert Nuttall
3d0eef5fcc Expose get operator name command. Add get access tech
Signed-off-by: Liu Han <liuhan@espressif.com>
2022-03-02 10:48:36 +01:00
Ivan Grokhotkov
7ef9868d65 Merge branch 'feature/add_component_manager_python_dependency_v4.1' into 'release/v4.1'
Build System: Add idf-component-manager python dependency (v4.1)

See merge request espressif/esp-idf!15987
2022-03-02 16:28:10 +08:00
Yuan Hong Hui
eee1a6f37c ble mesh:example:correct the output log level 2022-02-16 16:01:12 +08:00
Yuan Hong Hui
495f1fb132 ble mesh:example:response for checking restart in auto_test 2022-02-16 15:48:22 +08:00
aditi_lonkar
b6688edb37 esp_wifi: Fixed issue of weak md for certificates in wifi_enterprise example. 2022-01-28 16:56:23 +05:30
dongyou
ba9d913296 adjust espnow channel range 2022-01-28 16:52:12 +08:00
Sergei Silnov
3476ed2ce6 examples: Add the component manager example 2022-01-27 18:57:52 +01:00
Jiang Jiang Jian
916e3ef1f1 Merge branch 'bugfix/fix_tbtt_and_phy_issues_v4.1' into 'release/v4.1'
esp_wifi: fix tbtt and phy issues (Backport v4.1)

See merge request espressif/esp-idf!16842
2022-01-27 10:29:15 +00:00
Island
12c4b90745 Merge branch 'bugfix/filter_repeated_packages_forv4.1' into 'release/v4.1'
filter repeated packages but not send response(v4.1)

See merge request espressif/esp-idf!16823
2022-01-25 06:39:34 +00:00
Yuan Hong Hui
5134b76249 filter repeated packages but not send response(v4.1) 2022-01-25 06:39:33 +00:00
xiehang
8e47b98c8e example: Fix espnow stuck issue 2022-01-18 15:43:01 +08:00
Yuan Hong Hui
f24beb25c8 add cmd to publish and recv heartbeat message 2022-01-04 15:59:41 +08:00
Harshit Malpani
773c5ec5b9 Fix for advanced_ota_redirect_url example failure in CI 2021-12-16 14:07:57 +05:30
Harshit Malpani
c480ba851e Fix 'address already in use' exception in OTA tests
We will stop the server instance at the end of each test case. This will solve the "address already in use" exception
2021-12-16 10:35:25 +05:30
Yuan Hong Hui
48506b70c4 test: fix ble mesh send problem (v4.1) 2021-11-30 06:08:09 +00:00
Erhan Kurubas
08ef49e478 gcov: enable gcov in single core 2021-11-12 22:35:52 +03:00
Erhan Kurubas
384ca3452b gcov: enable single core tests 2021-11-12 00:32:44 +03:00
Erhan Kurubas
49942a9468 gcov: readme update for ESP32-S2 2021-11-12 00:31:56 +03:00