Skip to content

Commit

Permalink
Update ESP-IDF to current head of release/v3.2 branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
devsaurus committed Dec 16, 2018
1 parent f338d31 commit 45d1aca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/esp32-esp-idf
Submodule esp32-esp-idf updated 50 files
+66 −18 .gitlab-ci.yml
+3 −1 components/bt/Kconfig
+2 −1 components/bt/bluedroid/bta/dm/bta_dm_act.c
+3 −1 components/bt/bluedroid/bta/dm/bta_dm_api.c
+1 −0 components/bt/bluedroid/bta/dm/include/bta_dm_int.h
+2 −1 components/bt/bluedroid/bta/include/bta/bta_api.h
+90 −1 components/bt/bluedroid/btc/core/btc_ble_storage.c
+7 −0 components/bt/bluedroid/btc/core/btc_dm.c
+7 −0 components/bt/bluedroid/btc/include/btc/btc_ble_storage.h
+3 −1 components/bt/bluedroid/stack/btm/btm_ble.c
+1 −0 components/bt/bluedroid/stack/btm/include/btm_int.h
+2 −1 components/bt/bluedroid/stack/include/stack/btm_ble_api.h
+4 −2 components/bt/bluedroid/stack/smp/smp_act.c
+9 −3 components/bt/bluedroid/stack/smp/smp_utils.c
+156 −53 components/bt/bt.c
+0 −1 components/bt/include/esp_bt.h
+1 −1 components/bt/lib
+8 −4 components/driver/Kconfig
+26 −1 components/driver/i2c.c
+29 −0 components/driver/include/driver/i2c.h
+5 −0 components/driver/include/driver/spi_common.h
+20 −2 components/driver/include/driver/spi_master.h
+20 −2 components/driver/include/driver/spi_slave.h
+5 −4 components/driver/spi_master.c
+5 −4 components/driver/spi_slave.c
+29 −13 components/driver/uart.c
+6 −0 components/esp32/include/esp_phy_init.h
+1 −1 components/esp32/lib
+27 −0 components/esp32/panic.c
+16 −7 components/esp32/phy_init.c
+66 −0 components/esp32/test/test_wifi.c
+1 −1 components/ethernet/emac_main.c
+14 −12 components/fatfs/src/vfs_fat.c
+47 −87 components/idf_test/integration_test/TC_IT_BTSTK_SMP.yml
+2 −0 components/soc/esp32/include/soc/soc.h
+11 −0 components/vfs/vfs_uart.c
+18 −1 docs/en/api-reference/peripherals/spi_master.rst
+2 −2 docs/en/security/flash-encryption.rst
+4 −2 docs/en/security/secure-boot.rst
+4 −1 examples/peripherals/uart_select/main/uart_select_example_main.c
+17 −8 tools/check_python_dependencies.py
+2 −2 tools/idf.py
+51 −4 tools/tiny-test-fw/DUT.py
+5 −1 tools/tiny-test-fw/IDF/__init__.py
+62 −47 tools/tiny-test-fw/TinyFW.py
+1 −0 tools/tiny-test-fw/Utility/CIAssignTest.py
+1 −1 tools/tiny-test-fw/docs/index.rst
+1 −1 tools/tiny-test-fw/requirements.txt
+1 −1 tools/unit-test-app/tools/UnitTestParser.py
+251 −194 tools/unit-test-app/unit_test.py

0 comments on commit 45d1aca

Please sign in to comment.