]> granicus.if.org Git - esp-idf/log
esp-idf
6 years agoModifications for fs profiling tool
Renz Bagaporo [Thu, 21 Jun 2018 08:51:44 +0000 (16:51 +0800)]
Modifications for fs profiling tool

6 years agoMerge branch 'feature/http_server_finalize' into 'master'
Angus Gratton [Mon, 23 Jul 2018 05:11:04 +0000 (13:11 +0800)]
Merge branch 'feature/http_server_finalize' into 'master'

Feature add HTTP Web Server component

See merge request idf/esp-idf!2606

6 years agoMerge branch 'feature/tools_mass_mfg' into 'master'
Angus Gratton [Mon, 23 Jul 2018 05:10:17 +0000 (13:10 +0800)]
Merge branch 'feature/tools_mass_mfg' into 'master'

Add files for mass manufacturing tool

See merge request idf/esp-idf!2716

6 years agoMerge branch 'bugfix/reclaim_bt_ble_bss' into 'master'
Angus Gratton [Mon, 23 Jul 2018 04:48:13 +0000 (12:48 +0800)]
Merge branch 'bugfix/reclaim_bt_ble_bss' into 'master'

components/bt: Reclaim BT/BTDM BSS in bluetooth memory release function

See merge request idf/esp-idf!2750

6 years agoMerge branch 'bugfix/bootloader_noreturn_always' into 'master'
Angus Gratton [Mon, 23 Jul 2018 03:56:14 +0000 (11:56 +0800)]
Merge branch 'bugfix/bootloader_noreturn_always' into 'master'

bootloader: Ensure bootloader never returns to caller

See merge request idf/esp-idf!2815

6 years agoMerge branch 'bugfix/secure_boot_padding' into 'master'
Angus Gratton [Mon, 23 Jul 2018 03:44:50 +0000 (11:44 +0800)]
Merge branch 'bugfix/secure_boot_padding' into 'master'

secure boot: Fix padding issue allowing unverified data to be mapped into the address space

See merge request idf/esp-idf!2778

6 years agoMerge branch 'cermak_fuzzer_ci_job' into 'master'
Anton Maklakov [Mon, 23 Jul 2018 01:41:10 +0000 (09:41 +0800)]
Merge branch 'cermak_fuzzer_ci_job' into 'master'

added CI job for AFL fuzzer tests

See merge request idf/esp-idf!2537

6 years agoMerge branch 'bugfix/coex_pause' into 'master'
Jiang Jiang Jian [Sat, 21 Jul 2018 06:22:09 +0000 (14:22 +0800)]
Merge branch 'bugfix/coex_pause' into 'master'

fix coex pause cause bluetooth performance decrease

See merge request idf/esp-idf!2741

6 years agoMerge branch 'feature/test_exclude_components' into 'master'
Ivan Grokhotkov [Fri, 20 Jul 2018 11:43:46 +0000 (19:43 +0800)]
Merge branch 'feature/test_exclude_components' into 'master'

build: Add TEST_EXCLUDE_COMPONENTS

See merge request idf/esp-idf!2648

6 years agoMerge branch 'feature/freertos_vtasklist_xcoreid' into 'master'
Ivan Grokhotkov [Fri, 20 Jul 2018 10:46:41 +0000 (18:46 +0800)]
Merge branch 'feature/freertos_vtasklist_xcoreid' into 'master'

freertos: Add option to display xCoreID in vTaskList

See merge request idf/esp-idf!2728

6 years agoHttp Server : Add a simple light weight HTTP Server Component.
Anurg Kar [Tue, 3 Jul 2018 10:57:41 +0000 (16:27 +0530)]
Http Server : Add a simple light weight HTTP Server Component.
Also add examples, docs and test apps for the HTTP Server.

6 years agoadded CI job for AFL fuzzer tests
David Cermak [Mon, 11 Jun 2018 06:32:40 +0000 (08:32 +0200)]
added CI job for AFL fuzzer tests

6 years agoReclaim BT/BTDM BSS and Data in bluetooth memory release function
Hrishikesh Dhayagude [Wed, 11 Jul 2018 06:22:32 +0000 (11:52 +0530)]
Reclaim BT/BTDM BSS and Data in bluetooth memory release function

1. Modify esp_bt_controller_mem_release() to release BTDM BSS and Data to heap if
ESP_BT_MODE_BTDM mode is passed to it
2. Add a new API esp_bt_mem_release() which internally calls
esp_bt_controller_mem_release() with the provided mode and then if mode
is ESP_BT_MODE_BTDM, releases BT BSS and Data to heap.

Background:
For Wi-Fi and BT/BLE applications, for e.g. the usecase is like when
Bluetooth is used for provisioning and once the device is connected to the Wi-Fi
AP, we can turn off Bluetooth completely. In such scenarios, it should be possible to
reclaim all the memory of Bluetooth. Although, currently this does not
happen.

Experiment:
Made the following modifications to examples/bluetooth/gatt_server :
1. Added support of simple_wifi to it
2. Moved all the bluetooth related code under CONFIG_BT_ENABLED config
option
3. Calculated the free heap in 2 similar scenarios:
   i. Disabled BT (CONFIG_BT_ENABLED undefined) and checked the free
heap after STA connected
   ii. Kept BT enabled and disabled it after STA connected and checked
the free heap
Ideally, the numbers for i., ii. above should have been similar. But
there was a delta of almost 30-31K. (i. > ii.)
4. Through make size-components checked the common BSS for libbta.a and libbtdm_app.a
and found it to be almost 30K. Data is around 1K

Solution:
1. Modified the linker script to mark the BSS and Data for these libraries and
free it when ESP_BT_MODE_BTDM mode is passed to mem release APIs.
2. Verified that the free heap is comparable for i. and ii. above.

Note: It is known that once this is done, Bluetooth can only be used
again post reboot.

Signed-off-by: Hrishikesh Dhayagude <hrishi@espressif.com>
6 years agoAdd files and docs for mass mfg
Shivani Tipnis [Tue, 17 Jul 2018 08:44:30 +0000 (14:14 +0530)]
Add files and docs for mass mfg

6 years agoMerge branch 'bugfix/btdm_bt_remove_device_fail_when_ble_connected' into 'master'
Jiang Jiang Jian [Fri, 20 Jul 2018 02:46:31 +0000 (10:46 +0800)]
Merge branch 'bugfix/btdm_bt_remove_device_fail_when_ble_connected' into 'master'

component/bt: Fix bug of remove bond device fail when BLE and BT are connectd at the same time

See merge request idf/esp-idf!2767

6 years agoMerge branch 'feature/nvs_multipage_blob' into 'master'
Angus Gratton [Fri, 20 Jul 2018 01:13:34 +0000 (09:13 +0800)]
Merge branch 'feature/nvs_multipage_blob' into 'master'

nvs-flash: Support for blobs larger than half of SPI Flash sector size

See merge request idf/esp-idf!2182

6 years agonvs-flash: Support for blobs larger than half of SPI Flash sector size
Sagar Bijwe [Mon, 2 Apr 2018 10:44:59 +0000 (16:14 +0530)]
nvs-flash: Support for blobs larger than half of SPI Flash sector size

This change removes the earlier limitation of 1984 bytes for storing data-blobs.
Blobs larger than the sector size are split and stored on multiple sectors.
For this purpose, two new datatypes (multi-page index and multi-page data) are
added for entries stored in the sectors. The underlying read, write, erase and find
operations are modified to support these large blobs. The change is transparent
to users of the library and no special APIs need to be used to store these large
blobs.

6 years agoMerge branch 'bugfix/rtc_io_hold_regs' into 'master'
Ivan Grokhotkov [Thu, 19 Jul 2018 07:04:42 +0000 (15:04 +0800)]
Merge branch 'bugfix/rtc_io_hold_regs' into 'master'

Fix errors in rtc_gpio_desc values

See merge request idf/esp-idf!2765

6 years agoMerge branch 'bugfix/ulp_example_fix' into 'master'
Ivan Grokhotkov [Thu, 19 Jul 2018 07:04:20 +0000 (15:04 +0800)]
Merge branch 'bugfix/ulp_example_fix' into 'master'

ulp example: fix for RTC IOs

See merge request idf/esp-idf!2768

6 years agobootloader: Ensure bootloader never returns to caller
Angus Gratton [Thu, 19 Jul 2018 05:27:35 +0000 (15:27 +1000)]
bootloader: Ensure bootloader never returns to caller

* Fixes some "noreturn" functions in bootloader utils which did return (causing fatal CPU
  exceptions).
* Marks bootloader entry as "noreturn", preventing "user code done" from stalling boot
  Partial fix for https://github.com/espressif/esp-idf/issues/1814 TW20016
  (Comprehensive fix for this issue will be enabling WDT during bootloader, coming shortly.)

6 years agoMerge branch 'feature/esp32-pico-kit_v4.1' into 'master'
Angus Gratton [Thu, 19 Jul 2018 00:05:00 +0000 (08:05 +0800)]
Merge branch 'feature/esp32-pico-kit_v4.1' into 'master'

Added description of ESP32-PICO-KIT V4.1 board

See merge request idf/esp-idf!2762

6 years agoAdded description of ESP32-PICO-KIT V4.1 board
krzychb [Thu, 12 Jul 2018 19:12:17 +0000 (21:12 +0200)]
Added description of ESP32-PICO-KIT V4.1 board

6 years agoMerge branch 'bugfix/rmt_mem_num_maximum_limit_is_not_accurate' into 'master'
Wang Jia Lin [Wed, 18 Jul 2018 08:15:14 +0000 (16:15 +0800)]
Merge branch 'bugfix/rmt_mem_num_maximum_limit_is_not_accurate' into 'master'

bugfix(rmt): Modify the rmt_mem_num maximum limit value from 15 to 8.

See merge request idf/esp-idf!2734

6 years agoMerge branch 'bugfix/sdmmc_auto_stop_cmd' into 'master'
Ivan Grokhotkov [Wed, 18 Jul 2018 06:55:45 +0000 (14:55 +0800)]
Merge branch 'bugfix/sdmmc_auto_stop_cmd' into 'master'

sdmmc: enable host auto_stop only for certain commands

See merge request idf/esp-idf!2710

6 years agoMerge branch 'bugfix/deep_sleep_flush_uart' into 'master'
Ivan Grokhotkov [Wed, 18 Jul 2018 06:55:13 +0000 (14:55 +0800)]
Merge branch 'bugfix/deep_sleep_flush_uart' into 'master'

sleep: fix flushing UARTs when entering deep sleep

See merge request idf/esp-idf!2698

6 years agoMerge branch 'bugfix/btdm_using_osi_malloc_instead_of_malloc' into 'master'
Jiang Jiang Jian [Wed, 18 Jul 2018 03:09:28 +0000 (11:09 +0800)]
Merge branch 'bugfix/btdm_using_osi_malloc_instead_of_malloc' into 'master'

component/bt: Using osi_malloc instead of malloc

See merge request idf/esp-idf!2748

6 years agoMerge branch 'bugfix/esp_err_ignore_dirs' into 'master'
Angus Gratton [Wed, 18 Jul 2018 00:29:53 +0000 (08:29 +0800)]
Merge branch 'bugfix/esp_err_ignore_dirs' into 'master'

esp32: Do not document error codes defined in examples

See merge request idf/esp-idf!2732

6 years agofix coex pause cause bluetooth performance decrease
Tian Hao [Tue, 10 Jul 2018 08:22:29 +0000 (16:22 +0800)]
fix coex pause cause bluetooth performance decrease

1. it may cause BLE connection unstable
2. it may cause Classic BT connection unstable
3. it may cause BLE/BREDR scan performance decrease

6 years agoMerge branch 'bugfix/btdm_some_misspell' into 'master'
Jiang Jiang Jian [Tue, 17 Jul 2018 12:48:03 +0000 (20:48 +0800)]
Merge branch 'bugfix/btdm_some_misspell' into 'master'

component/bt: Fix some misspell

See merge request idf/esp-idf!2783

6 years agoMerge branch 'bugfix/ampdu_duplicate' into 'master'
Jiang Jiang Jian [Tue, 17 Jul 2018 12:45:45 +0000 (20:45 +0800)]
Merge branch 'bugfix/ampdu_duplicate' into 'master'

wifi: fix ampdu duplicate issue

See merge request idf/esp-idf!2742

6 years agoMerge branch 'bugfix/range_CONFIG_ESP32_RTC_CLK_CAL_CYCLES' into 'master'
Ivan Grokhotkov [Tue, 17 Jul 2018 11:43:11 +0000 (19:43 +0800)]
Merge branch 'bugfix/range_CONFIG_ESP32_RTC_CLK_CAL_CYCLES' into 'master'

soc/clk: Fix range CONFIG_ESP32_RTC_CLK_CAL_CYCLES

See merge request idf/esp-idf!2719

6 years agofreertos: add configTASKLIST_INCLUDE_COREID
Ivan Grokhotkov [Mon, 9 Jul 2018 07:25:59 +0000 (15:25 +0800)]
freertos: add configTASKLIST_INCLUDE_COREID

6 years agoAdded: display xCoreID in vTaskList
Dave McNaughton [Thu, 14 Jun 2018 10:37:52 +0000 (20:37 +1000)]
Added: display xCoreID in vTaskList

Merges https://github.com/espressif/esp-idf/pull/2064

6 years agoMerge branch 'bugfix/time_ut_wakeup_from_deep_sleep' into 'master'
Ivan Grokhotkov [Tue, 17 Jul 2018 10:39:15 +0000 (18:39 +0800)]
Merge branch 'bugfix/time_ut_wakeup_from_deep_sleep' into 'master'

esp32/test: Reduces a unit test execution time

See merge request idf/esp-idf!2776

6 years agoMerge branch 'bugfix/clear_intr_status_when_enable_intr' into 'master'
Wang Jia Lin [Tue, 17 Jul 2018 07:44:00 +0000 (15:44 +0800)]
Merge branch 'bugfix/clear_intr_status_when_enable_intr' into 'master'

driver(gpio): fix the gpio interrupt false triggering issue

See merge request idf/esp-idf!2498

6 years agoMerge branch 'bugfix/fix_uart_timeout_bug_when_enable_reftick' into 'master'
Wang Jia Lin [Tue, 17 Jul 2018 07:43:47 +0000 (15:43 +0800)]
Merge branch 'bugfix/fix_uart_timeout_bug_when_enable_reftick' into 'master'

driver(uart):  Fix uart time_out bug when using ref_tick

See merge request idf/esp-idf!2775

6 years agoapp_update: Don't double-verify secure boot signature during OTA
Angus Gratton [Mon, 16 Jul 2018 06:38:08 +0000 (16:38 +1000)]
app_update: Don't double-verify secure boot signature during OTA

esp_image_load() already verifies the signature

6 years agosecure boot: Pad to avoid data after the signature mapping into the address space
Angus Gratton [Fri, 13 Jul 2018 01:52:57 +0000 (11:52 +1000)]
secure boot: Pad to avoid data after the signature mapping into the address space

Because address space is mapped in 64KB pages, it was possible for unauthenticated data after the
app .bin to become mapped into the flash cache address space.

This problem is solved by 2 changes:

* "esptool elf2image --secure-pad" will pad the image so that the signature block ends close to the
  64KB boundary. Due to alignment constraints it will be 12 bytes too short after signing (but
  with flash encryption, these 12 bytes are still encrypted as part of the last block and can't be
  arbitrarily changed).
* By default, secure boot now requires all app partitions to be a multiple of 64KB in size.

6 years agocomponent/bt: Fix some misspell
baohongde [Mon, 16 Jul 2018 12:56:45 +0000 (20:56 +0800)]
component/bt: Fix some misspell

Using CONFIG_BT_SSP_ENABLE instead if BT_SPP_INCLUDED

6 years agoModify the rmt_mem_num maximum limit value from 15 to 8.
XiongYu [Mon, 9 Jul 2018 11:22:31 +0000 (19:22 +0800)]
Modify the rmt_mem_num maximum limit value from 15 to 8.

6 years agoesp32/test: Reduces a unit test execution time
Konstantin Kondrashov [Mon, 16 Jul 2018 03:31:43 +0000 (08:31 +0500)]
esp32/test: Reduces a unit test execution time

6 years agowifi: fix ampdu duplicate issue
chenyudong [Mon, 16 Jul 2018 09:10:58 +0000 (17:10 +0800)]
wifi: fix ampdu duplicate issue

fix ampdu duplicate issue

6 years agoMerge branch 'bugfix/tw23835_add_source_ip_route_for_unicast' into 'master'
Jiang Jiang Jian [Mon, 16 Jul 2018 09:01:16 +0000 (17:01 +0800)]
Merge branch 'bugfix/tw23835_add_source_ip_route_for_unicast' into 'master'

lwip: add source ip based route for unicast packet

See merge request idf/esp-idf!2757

6 years agodriver(uart): Fix uart time_out bug when using ref_tick
hou wen xiang [Fri, 13 Jul 2018 13:55:54 +0000 (21:55 +0800)]
driver(uart): Fix uart time_out bug when using ref_tick

6 years agoMerge branch 'bugfix/spi_cs_setup_fulldup' into 'master'
Angus Gratton [Mon, 16 Jul 2018 08:30:36 +0000 (16:30 +0800)]
Merge branch 'bugfix/spi_cs_setup_fulldup' into 'master'

fix(spi_master): allow to use cs_ena_pretrans in full duplex mode without…

See merge request idf/esp-idf!2576

6 years agoMerge branch 'bugfix/mdns_remove' into 'master'
Angus Gratton [Mon, 16 Jul 2018 08:29:20 +0000 (16:29 +0800)]
Merge branch 'bugfix/mdns_remove' into 'master'

mdns: Minor fix for mdns_service_remove()

See merge request idf/esp-idf!2760

6 years agoMerge branch 'bugfix/sh2lib_send_bug' into 'master'
Angus Gratton [Mon, 16 Jul 2018 08:29:03 +0000 (16:29 +0800)]
Merge branch 'bugfix/sh2lib_send_bug' into 'master'

sh2lib: Fix a bug in send

See merge request idf/esp-idf!2656

6 years agoMerge branch 'bugfix/add_queueset_critical_sections' into 'master'
Angus Gratton [Mon, 16 Jul 2018 07:57:35 +0000 (15:57 +0800)]
Merge branch 'bugfix/add_queueset_critical_sections' into 'master'

freertos: Add critical sections to queue sets.

See merge request idf/esp-idf!2761

6 years agocomponent/bt: Fix bug of remove bond device fail when BLE and BT are connectd at...
baohongde [Mon, 16 Jul 2018 07:43:01 +0000 (15:43 +0800)]
component/bt: Fix bug of remove bond device fail when BLE and BT are connectd at the same time

6 years agoMerge branch 'feature/support_for_XM25QU64A' into 'master'
Jiang Jiang Jian [Mon, 16 Jul 2018 04:16:13 +0000 (12:16 +0800)]
Merge branch 'feature/support_for_XM25QU64A' into 'master'

feature(flash): set QIO mode for XM25QU64A(1V8_64M_flash)

See merge request idf/esp-idf!2753

6 years agoMerge branch 'bugfix/ledc_duty_and_freq' into 'master'
Jiang Jiang Jian [Mon, 16 Jul 2018 04:12:48 +0000 (12:12 +0800)]
Merge branch 'bugfix/ledc_duty_and_freq' into 'master'

bugfix(ledc): fix bugs reported from unit-test and github.

See merge request idf/esp-idf!2735

6 years agoMerge branch 'bugfix/secure_boot_regression_partitions' into 'master'
Angus Gratton [Mon, 16 Jul 2018 04:07:56 +0000 (12:07 +0800)]
Merge branch 'bugfix/secure_boot_regression_partitions' into 'master'

Fix secure boot & flash encryption regression, don't verify partitions as part of secure boot

See merge request idf/esp-idf!2764

6 years agoMerge branch 'feature/wifi_check_wifi_lib_git_commit_id' into 'master'
Jiang Jiang Jian [Mon, 16 Jul 2018 03:45:59 +0000 (11:45 +0800)]
Merge branch 'feature/wifi_check_wifi_lib_git_commit_id' into 'master'

check WiFi library git commit id in unit test

See merge request idf/esp-idf!2621

6 years agodocs: Add more ReST-isms in secure boot & flash encryption docs
Angus Gratton [Fri, 13 Jul 2018 06:44:11 +0000 (16:44 +1000)]
docs: Add more ReST-isms in secure boot & flash encryption docs

(Original version of these docs were in Markdown.)

6 years agodocs: Add note about bootloader size for flash encryption & secure boot
Angus Gratton [Fri, 13 Jul 2018 06:19:23 +0000 (16:19 +1000)]
docs: Add note about bootloader size for flash encryption & secure boot

6 years agoMerge branch 'bugfix/spi_sdio_sdkconfig_include' into 'master'
Angus Gratton [Mon, 16 Jul 2018 00:00:15 +0000 (08:00 +0800)]
Merge branch 'bugfix/spi_sdio_sdkconfig_include' into 'master'

sdio_example/spi: fix sdkconfig include issue

See merge request idf/esp-idf!2756

6 years agoMerge branch 'docs/btdm_refactor_ble_spp_readme' into 'master'
Jiang Jiang Jian [Sun, 15 Jul 2018 07:38:40 +0000 (15:38 +0800)]
Merge branch 'docs/btdm_refactor_ble_spp_readme' into 'master'

component/bt_refactor_ble_spp_readme

See merge request idf/esp-idf!2717

6 years agoMerge branch 'bugfix/autoip_compilation' into 'master'
Jiang Jiang Jian [Sun, 15 Jul 2018 07:19:11 +0000 (15:19 +0800)]
Merge branch 'bugfix/autoip_compilation' into 'master'

LWIP AutoIP Compilation Fixed by defining IP_IS_V4_VAL()

See merge request idf/esp-idf!2758

6 years agoMerge branch 'test/print_debug_info_when_test_failed' into 'master'
He Yin Ling [Fri, 13 Jul 2018 13:22:29 +0000 (21:22 +0800)]
Merge branch 'test/print_debug_info_when_test_failed' into 'master'

tiny-test-fw: print debug info when test failed

See merge request idf/esp-idf!2564

6 years agoMerge branch 'bugfix/btdm_add_profile_descriptor_list_for_spp' into 'master'
Jiang Jiang Jian [Fri, 13 Jul 2018 11:20:03 +0000 (19:20 +0800)]
Merge branch 'bugfix/btdm_add_profile_descriptor_list_for_spp' into 'master'

component/bt: Add profile descriptor list for SPP

See merge request idf/esp-idf!2691

6 years agoMerge branch 'feature/btdm_bt_ssp' into 'master'
Jiang Jiang Jian [Fri, 13 Jul 2018 11:19:53 +0000 (19:19 +0800)]
Merge branch 'feature/btdm_bt_ssp' into 'master'

component/bt: Add Secure Simple Pairing

See merge request idf/esp-idf!2453

6 years agoulp example: fix for RTC IOs
Ivan Grokhotkov [Fri, 13 Jul 2018 09:44:57 +0000 (17:44 +0800)]
ulp example: fix for RTC IOs

- call rtc_gpio_init for pins which aren't configured as RTC by default
- for RTC IOs 16 and 17, read higher part of the input register
- automatically convert GPIO number into RTC IO number
- use ulp_set_wakeup_period instead of writing to register

6 years agoLWIP AutoIP Compilation Fixed by defining IP_IS_V4_VAL()
Piyush Shah [Thu, 12 Jul 2018 09:48:51 +0000 (15:18 +0530)]
LWIP AutoIP Compilation Fixed by defining IP_IS_V4_VAL()

6 years agoesp32/test: set 60s timeout for one deep sleep case
He Yin Ling [Thu, 21 Jun 2018 11:58:24 +0000 (19:58 +0800)]
esp32/test: set 60s timeout for one deep sleep case

6 years agotiny-test-fw: save DUT log in different thread:
He Yin Ling [Thu, 21 Jun 2018 09:11:32 +0000 (17:11 +0800)]
tiny-test-fw: save DUT log in different thread:

We found some SD card on Raspberry Pi could have very bad performance.
It could take seconds to save small amount of data.
If the DUT receives data and save it as log, then it stops receiving data until log is saved.
This could lead to expect timeout. As an workaround to this issue,
``BaseDUT`` class will create a thread to save logs.
Then data will be passed to ``expect`` as soon as received.

6 years agotiny-test-fw: fix incorrect wait timeout in expect
He Yin Ling [Thu, 21 Jun 2018 08:38:46 +0000 (16:38 +0800)]
tiny-test-fw: fix incorrect wait timeout in expect

6 years agotiny-test-fw: filter examples with test level
He Yin Ling [Fri, 15 Jun 2018 09:45:24 +0000 (17:45 +0800)]
tiny-test-fw: filter examples with test level

6 years agotiny-test-fw: print expect failure when test fails
He Yin Ling [Fri, 15 Jun 2018 09:33:39 +0000 (17:33 +0800)]
tiny-test-fw: print expect failure when test fails

6 years agoMerge branch 'bugfix/fixes_from_github' into 'master'
Ivan Grokhotkov [Fri, 13 Jul 2018 07:03:50 +0000 (15:03 +0800)]
Merge branch 'bugfix/fixes_from_github' into 'master'

Fixes from Github

See merge request idf/esp-idf!2730

6 years agodocs: Update Flash Encryption docs to clarify reflashing options
Angus Gratton [Fri, 13 Jul 2018 06:18:07 +0000 (16:18 +1000)]
docs: Update Flash Encryption docs to clarify reflashing options

6 years agoFix errors in rtc_gpio_desc values
negativekelvin [Fri, 13 Jul 2018 06:16:15 +0000 (23:16 -0700)]
Fix errors in rtc_gpio_desc values

6 years agofreertos: Add critical sections to queue sets.
Darian Leung [Wed, 11 Jul 2018 12:50:43 +0000 (20:50 +0800)]
freertos: Add critical sections to queue sets.

Queue sets are not SMP safe. This commit adds
critical sections to queue sets. Unit tests for
queue sets have also been added.

6 years agobootloader: Fix warning building reflashable Secure Boot image
Angus Gratton [Fri, 13 Jul 2018 05:24:11 +0000 (15:24 +1000)]
bootloader: Fix warning building reflashable Secure Boot image

6 years agobootloader: Don't verify Partition Table as part of Secure Boot
Angus Gratton [Fri, 13 Jul 2018 05:23:04 +0000 (15:23 +1000)]
bootloader: Don't verify Partition Table as part of Secure Boot

Partition Tables are still signed for backwards compatibility, but signature is no longer checked as
part of bootloader.

Closes https://github.com/espressif/esp-idf/issues/1641

6 years agobootloader: Fix secure boot & flash encryption functionality
Angus Gratton [Fri, 13 Jul 2018 05:21:07 +0000 (15:21 +1000)]
bootloader: Fix secure boot & flash encryption functionality

Fixes regression in 3e0ac4db79.

6 years agolwip: add source ip based route for unicast packet
Liu Zhi Fu [Thu, 12 Jul 2018 08:49:22 +0000 (16:49 +0800)]
lwip: add source ip based route for unicast packet

Add source IP based route for unicast packets forwarding.

6 years agoMerge branch 'bugfix/crlf_auto_conversion' into 'master'
Ivan Grokhotkov [Fri, 13 Jul 2018 03:44:57 +0000 (11:44 +0800)]
Merge branch 'bugfix/crlf_auto_conversion' into 'master'

Convert CRLF (Windows line endings) to LF (Unix style), add CI check

See merge request idf/esp-idf!2119

6 years agosdmmc: enable host auto_stop only for certain commands
Ivan Grokhotkov [Thu, 5 Jul 2018 08:50:16 +0000 (16:50 +0800)]
sdmmc: enable host auto_stop only for certain commands

Perviously host send_auto_stop flag would be set for every data
transfer over 1 block long. This caused stop commands to be sent
after CMD53, which shouldn't be done. Fix by adding an explicit list
of commands for which send_auto_stop should be set.

6 years agoMerge branch 'fix/bootloader_typedef_enum' into 'master'
Angus Gratton [Fri, 13 Jul 2018 00:24:28 +0000 (08:24 +0800)]
Merge branch 'fix/bootloader_typedef_enum' into 'master'

bootloader: fix missing typedef on enum defintion

See merge request idf/esp-idf!2718

6 years agomdns: Minor fix for mdns_service_remove()
Piyush Shah [Thu, 12 Jul 2018 13:45:02 +0000 (19:15 +0530)]
mdns: Minor fix for mdns_service_remove()

Send the Goodbye packet while removing an mDNS service as an "Authoritative" packet so
that the listeners remove the service from their records immediately.

6 years agodriver(gpio) : Fixed the gpio related bug for release v3.1.
hou wen xiang [Mon, 4 Jun 2018 02:34:23 +0000 (10:34 +0800)]
driver(gpio) : Fixed the gpio related bug for release v3.1.

6 years agoMerge branch 'feature/ci_support_test_one_case_multiple_times' into 'master'
He Yin Ling [Thu, 12 Jul 2018 11:57:21 +0000 (19:57 +0800)]
Merge branch 'feature/ci_support_test_one_case_multiple_times' into 'master'

CI: support test one case multiple times by @bot

See merge request idf/esp-idf!2692

6 years agoMerge branch 'bugfix/tiny_test_fw_filter_invalid_serial_port' into 'master'
He Yin Ling [Thu, 12 Jul 2018 11:56:48 +0000 (19:56 +0800)]
Merge branch 'bugfix/tiny_test_fw_filter_invalid_serial_port' into 'master'

tiny-test-fw: filter out invalid IDF ports

See merge request idf/esp-idf!2745

6 years agoTools: Correct line endings in idf_monitor tests
Roland Dobai [Thu, 12 Jul 2018 06:37:04 +0000 (08:37 +0200)]
Tools: Correct line endings in idf_monitor tests

6 years agoReplace all DOS line endings with Unix
Angus Gratton [Wed, 4 Jul 2018 23:01:03 +0000 (09:01 +1000)]
Replace all DOS line endings with Unix

Command run was:
git ls-tree -r HEAD --name-only | xargs dos2unix

6 years agoci: Add line endings check for CRLF in repository
Angus Gratton [Fri, 23 Mar 2018 06:05:16 +0000 (17:05 +1100)]
ci: Add line endings check for CRLF in repository

6 years agocheck WiFi library git commit id in unit test
XiaXiaotian [Tue, 26 Jun 2018 06:56:58 +0000 (14:56 +0800)]
check WiFi library git commit id in unit test

6 years agobootloader: fix missing typedef on enum defintion
weyoui [Tue, 3 Jul 2018 02:58:34 +0000 (11:58 +0900)]
bootloader: fix missing typedef on enum defintion

(MINOR CHANGES)
Closes https://github.com/espressif/esp-idf/pull/2140

6 years agoMerge branch 'bugfix/beacon_info_do_not_update_after_user_scan' into 'master'
Jiang Jiang Jian [Thu, 12 Jul 2018 09:24:54 +0000 (17:24 +0800)]
Merge branch 'bugfix/beacon_info_do_not_update_after_user_scan' into 'master'

Wifi: bugfix of beacon info don't update after user scan

See merge request idf/esp-idf!2749

6 years agoMerge branch 'bugfix/fix_esp_pthread_h_compatible_with_cpp' into 'master'
Ivan Grokhotkov [Thu, 12 Jul 2018 08:54:18 +0000 (16:54 +0800)]
Merge branch 'bugfix/fix_esp_pthread_h_compatible_with_cpp' into 'master'

pthread: fix esp_pthread.h to compatible with c++

See merge request idf/esp-idf!2739

6 years agosdio_example/spi: fix sdkconfig include issue
Michael (XIAO Xufeng) [Thu, 12 Jul 2018 07:57:32 +0000 (15:57 +0800)]
sdio_example/spi: fix sdkconfig include issue

(MINOR CHANGES)

6 years agocomponent/bt_refactor_ble_spp_readme
xiewenxiang [Thu, 5 Jul 2018 09:36:11 +0000 (17:36 +0800)]
component/bt_refactor_ble_spp_readme

6 years agoMerge branch 'fix/sdio_speed_4bit' into 'master'
Angus Gratton [Thu, 12 Jul 2018 00:54:03 +0000 (08:54 +0800)]
Merge branch 'fix/sdio_speed_4bit' into 'master'

fix(sdio): update sdio to better run in 4bit HS mode

See merge request idf/esp-idf!2704

6 years agoMerge branch 'bugfix/rtc_isr_deregister_memory_leak' into 'master'
Angus Gratton [Thu, 12 Jul 2018 00:25:56 +0000 (08:25 +0800)]
Merge branch 'bugfix/rtc_isr_deregister_memory_leak' into 'master'

bugfix/memory leak in rtc_isr_deregister

See merge request idf/esp-idf!2754

6 years agofeature(flash): support for QIO mode of XM25QU64A
chenjianqiang [Wed, 11 Jul 2018 13:36:35 +0000 (21:36 +0800)]
feature(flash): support for QIO mode of XM25QU64A

6 years agodriver: Fix memory leak in rtc_isr_deregister()
Darian Leung [Wed, 11 Jul 2018 13:31:23 +0000 (21:31 +0800)]
driver: Fix memory leak in rtc_isr_deregister()

Closes #2179

6 years agoWifi: bugfix of beacon info don't update after user scan
Deng Xin [Wed, 11 Jul 2018 08:38:33 +0000 (16:38 +0800)]
Wifi: bugfix of beacon info don't update after user scan

6 years agoMerge branch 'bugfix/btdm_err_data_report' into 'master'
Jiang Jiang Jian [Wed, 11 Jul 2018 12:00:46 +0000 (20:00 +0800)]
Merge branch 'bugfix/btdm_err_data_report' into 'master'

component/bt: bugfix for erroneous data reporting always enabled

See merge request idf/esp-idf!2709

6 years agocomponent/bt: Using osi_malloc instead of malloc
baohongde [Wed, 11 Jul 2018 06:33:55 +0000 (14:33 +0800)]
component/bt: Using osi_malloc instead of malloc

6 years agocomponent/bt: Add profile descriptor list for SPP
baohongde [Tue, 3 Jul 2018 11:38:19 +0000 (19:38 +0800)]
component/bt: Add profile descriptor list for SPP