Skip to content

Commit

Permalink
esp-idf: update to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
redchenjs committed May 19, 2020
1 parent 141e62e commit 867500f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp-idf
Submodule esp-idf updated 61 files
+0 −9 components/bt/esp_ble_mesh/mesh_core/transport.c
+3 −0 components/bt/host/bluedroid/bta/dm/bta_dm_act.c
+2 −1 components/bt/host/bluedroid/bta/dm/include/bta_dm_int.h
+4 −14 components/bt/host/bluedroid/bta/gatt/bta_gatts_act.c
+11 −0 components/bt/host/bluedroid/btc/core/btc_main.c
+9 −0 components/bt/host/bluedroid/btc/profile/std/gatt/btc_gatts.c
+7 −0 components/bt/host/bluedroid/hci/packet_fragmenter.c
+1 −1 components/bt/host/bluedroid/stack/l2cap/include/l2c_int.h
+1 −1 components/bt/host/bluedroid/stack/l2cap/l2c_api.c
+2 −1 components/bt/host/bluedroid/stack/l2cap/l2c_utils.c
+7 −3 components/bt/host/bluedroid/stack/smp/smp_act.c
+27 −0 components/esp_netif/include/esp_netif.h
+36 −4 components/esp_netif/lwip/esp_netif_lwip.c
+1 −0 components/esp_wifi/include/esp_wifi_types.h
+1 −1 components/esp_wifi/lib
+29 −2 components/mbedtls/CMakeLists.txt
+34 −0 components/mbedtls/Kconfig
+19 −0 components/mbedtls/component.mk
+518 −0 components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.c
+85 −0 components/mbedtls/port/dynamic/esp_mbedtls_dynamic_impl.h
+202 −0 components/mbedtls/port/dynamic/esp_ssl_cli.c
+188 −0 components/mbedtls/port/dynamic/esp_ssl_srv.c
+158 −0 components/mbedtls/port/dynamic/esp_ssl_tls.c
+19 −4 docs/en/api-guides/dfu.rst
+12 −1 docs/en/api-reference/network/esp_smartconfig.rst
+1 −1 docs/en/api-reference/network/index.rst
+8 −1 docs/en/api-reference/provisioning/index.rst
+1 −1 docs/en/contribute/documenting-code.rst
+1 −9 docs/zh_CN/api-reference/network/esp_smartconfig.rst
+0 −6 examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/Kconfig.projbuild
+0 −6 examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/Kconfig.projbuild
+0 −6 examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/Kconfig.projbuild
+0 −6 examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/Kconfig.projbuild
+13 −13 examples/common_components/protocol_examples_common/Kconfig.projbuild
+143 −49 examples/common_components/protocol_examples_common/connect.c
+14 −0 examples/common_components/protocol_examples_common/include/protocol_examples_common.h
+2 −2 examples/protocols/README.md
+29 −0 examples/protocols/esp_http_client/esp_http_client_test.py
+1 −0 examples/protocols/esp_http_client/sdkconfig.ci
+13 −0 examples/protocols/esp_http_client/sdkconfig.ci.ssldyn
+13 −0 examples/protocols/https_request/example_test.py
+1 −0 examples/protocols/https_request/sdkconfig.ci
+14 −0 examples/protocols/https_request/sdkconfig.ci.ssldyn
+13 −0 examples/protocols/https_x509_bundle/example_test.py
+3 −0 examples/protocols/https_x509_bundle/sdkconfig.ci
+6 −0 examples/protocols/https_x509_bundle/sdkconfig.ci.ssldyn
+10 −0 examples/protocols/sockets/tcp_client_multi_net/CMakeLists.txt
+11 −0 examples/protocols/sockets/tcp_client_multi_net/Makefile
+133 −0 examples/protocols/sockets/tcp_client_multi_net/README.md
+2 −0 examples/protocols/sockets/tcp_client_multi_net/main/CMakeLists.txt
+24 −0 examples/protocols/sockets/tcp_client_multi_net/main/Kconfig.projbuild
+4 −0 examples/protocols/sockets/tcp_client_multi_net/main/component.mk
+157 −0 examples/protocols/sockets/tcp_client_multi_net/main/tcp_client_multiple.c
+2 −0 examples/protocols/sockets/tcp_client_multi_net/sdkconfig.defaults
+2 −1 examples/protocols/sockets/tcp_server/example_test.py
+2 −1 examples/protocols/sockets/udp_server/example_test.py
+6 −0 examples/wifi/scan/main/scan.c
+10 −5 tools/idf.py
+18 −7 tools/kconfig_new/confgen.py
+1 −1 tools/kconfig_new/confserver.py
+45 −5 tools/kconfig_new/test/confgen/test_confgen.py

0 comments on commit 867500f

Please sign in to comment.