]>
granicus.if.org Git - esp-idf/log
Tian Hao [Tue, 19 Feb 2019 07:43:03 +0000 (15:43 +0800)]
Reduce part of IRAM consumption in wifi libnet80211.a
It might be a little effect of WIFI max TX throughput if the limitation is cache hit rate
Tian Hao [Thu, 14 Feb 2019 08:52:17 +0000 (16:52 +0800)]
component/esp32 : fix coexist lc protect cause memory corrupted
The bug will cause memory corrupted (the largest range is from 0x3ffc0000 ~ 0x3ffc8000),
some strange error will happen, like IllegalInstruction, LoadProhibited and .etc.
Angus Gratton [Tue, 19 Feb 2019 02:48:04 +0000 (10:48 +0800)]
Merge branch 'bugfix/freertos_unused_xSize' into 'master'
freertos: Fix unused variable warning
See merge request idf/esp-idf!4281
Angus Gratton [Tue, 19 Feb 2019 02:42:33 +0000 (10:42 +0800)]
Merge branch 'bugfix/wdt_compability_app_with_old_bootloader' into 'master'
esp32: Fix wdt settings in esp_restart_noos
See merge request idf/esp-idf!4098
Angus Gratton [Tue, 19 Feb 2019 02:22:04 +0000 (10:22 +0800)]
Merge branch 'bugfix/nvs_key_part_check_err' into 'master'
nvs_flash: Detect key partition as uninitialised even if encrypted by bootloader
See merge request idf/esp-idf!4224
Angus Gratton [Mon, 18 Feb 2019 22:06:31 +0000 (06:06 +0800)]
Merge branch 'feature/docs_add-ons_and_extensions' into 'master'
docs: This is a quick reference of more than a dozen and-ons and extensions prepared over the last two years to add contents, improve look & feel and cut on maintenance of the ESP-IDF documentation.
See merge request idf/esp-idf!4244
Angus Gratton [Mon, 18 Feb 2019 22:04:54 +0000 (06:04 +0800)]
Merge branch 'feature/get_started_steps' into 'master'
Introduced installation steps to improve navigation through the installation…
See merge request idf/esp-idf!4234
Angus Gratton [Mon, 18 Feb 2019 00:06:12 +0000 (08:06 +0800)]
Merge branch 'feature/wifi_provisioning_handler_ctx' into 'master'
Provisioning : Various fixes in protocomm and wifi_provisioning components
See merge request idf/esp-idf!4188
krzychb [Sun, 10 Feb 2019 18:14:28 +0000 (19:14 +0100)]
docs: This is a quick reference of more than a dozen and-ons and extensions prepared over the last two years to add contents, improve look & feel and cut on maintenance of the ESP-IDF documentation.
krzychb [Mon, 4 Feb 2019 20:51:50 +0000 (21:51 +0100)]
Introduced installation steps to improve navigation through the installation process. Included some updates from GNU make section.
Ivan Grokhotkov [Sun, 17 Feb 2019 05:03:28 +0000 (13:03 +0800)]
Merge branch 'fix/spi_on_readonly_pins' into 'master'
spi: fix the bug of connecting SPI peripheral to read-only pins
See merge request idf/esp-idf!4246
Michael (XIAO Xufeng) [Mon, 11 Feb 2019 06:17:31 +0000 (14:17 +0800)]
spi: fix the bug of connecting SPI peripheral to read-only pins
The requirements of pin capabilites is different for spi master and
slave. The master needs CS, SCLK, MOSI to be output-able, while slave
needs MISO to be output-able.
Previous code is for master only.
This commit allows to place other 3 pins than MISO on input-only pins
for slaves. Refactoring for spi_common is also included.
Resolves https://github.com/espressif/esp-idf/issues/2455
Jiang Jiang Jian [Sat, 16 Feb 2019 08:27:49 +0000 (16:27 +0800)]
Merge branch 'bugfix/btdm_crash_when_inquiry_cancel' into 'master'
Bugfix/btdm crash when inquiry cancel
See merge request idf/esp-idf!4142
Darian Leung [Fri, 15 Feb 2019 17:42:00 +0000 (01:42 +0800)]
freertos: Fix unused variable warning
This commit fixes an unused variable warning when
configASSERT is undefined.
Anurag Kar [Fri, 8 Feb 2019 10:28:57 +0000 (15:58 +0530)]
provisioning examples : typos fixed and minor change in timer callback execution
Note : Examples have been updated to prevent invocation of bluedroid/wifi APIs from inside timer callback when stopping provisioning. Workaround is to spawn new task from inside the timer callback.
Anurag Kar [Fri, 8 Feb 2019 09:51:33 +0000 (15:21 +0530)]
protocomm : typos fixed and descriptions corrected
Anurag Kar [Fri, 8 Feb 2019 09:21:19 +0000 (14:51 +0530)]
protocomm unit_tests : test cases updated
Changes:
* Version endpoint test added
* Memory leak test updated to include corner case exceptions in protocomm
Anurag Kar [Fri, 8 Feb 2019 09:12:49 +0000 (14:42 +0530)]
protocomm security : memory leaks fixed
List of changes:
* Corner case exceptions are properly handled to ensure release of memory occupied by security infrastructure
* fixed erroneous cleanup of security instance by protocomm_console
Anurag Kar [Fri, 8 Feb 2019 06:36:23 +0000 (12:06 +0530)]
protocomm : version endpoint behavior simplified
List of changes:
* Version endpoint now sends the set version string instead of verifying the incoming version string. This simplifies fetching version info from the provisioning application.
* esp_prov script updated to expect version string as response.
Anurag Kar [Mon, 28 Jan 2019 09:51:28 +0000 (15:21 +0530)]
wifi_provisioning : context pointer added to wifi_config_t structure and related examples/docs updated
Closes https://github.com/espressif/esp-idf/issues/2874
Anurag Kar [Mon, 28 Jan 2019 09:48:47 +0000 (15:18 +0530)]
provisioning framework : 'extern C' directives added for C++ support
Ivan Grokhotkov [Fri, 15 Feb 2019 09:06:57 +0000 (17:06 +0800)]
Merge branch 'doc/cleanup_apptrace2host_example' into 'master'
cleanup app_trace_to_host example
See merge request idf/esp-idf!4160
Angus Gratton [Fri, 15 Feb 2019 06:21:44 +0000 (14:21 +0800)]
Merge branch 'feature/protocomm_httpd_changes' into 'master'
Feature/protocomm httpd changes
See merge request idf/esp-idf!4227
Angus Gratton [Fri, 15 Feb 2019 05:55:25 +0000 (13:55 +0800)]
Merge branch 'feature/lwip_add_linker_fragment' into 'master'
add linker fragment for lwip
See merge request idf/esp-idf!4255
Jiang Jiang Jian [Fri, 15 Feb 2019 04:14:41 +0000 (12:14 +0800)]
Merge branch 'bugfix/fix_some_wifi_bugs_0131' into 'master'
esp32: fix some wifi bugs
See merge request idf/esp-idf!4216
Angus Gratton [Fri, 15 Feb 2019 00:55:14 +0000 (08:55 +0800)]
Merge branch 'bugfix/cmake_unit_test_fail' into 'master'
Use flasher_args.json for flashing CMake CI unit test
See merge request idf/esp-idf!4225
Angus Gratton [Fri, 15 Feb 2019 00:54:06 +0000 (08:54 +0800)]
Merge branch 'test/disable_sdio_example_ci' into 'master'
sdio: temporarily disable the sdio example ci, since the runners have some power issue
See merge request idf/esp-idf!4264
Ivan Grokhotkov [Fri, 15 Feb 2019 00:50:18 +0000 (08:50 +0800)]
Merge branch 'bugfix/default_event_loop_example_failure' into 'master'
Fix failures in running esp_event example test
Closes #64
See merge request idf/esp-idf!4252
Angus Gratton [Fri, 15 Feb 2019 00:19:05 +0000 (08:19 +0800)]
Merge branch 'docs/translate-cmake-notes' into 'master'
Translate notes regarding CMake-based build system
See merge request idf/esp-idf!4231
Angus Gratton [Fri, 15 Feb 2019 00:16:04 +0000 (08:16 +0800)]
Merge branch 'bugfix/relink_on_included_linker_script_change' into 'master'
Re-link when linker script included from template file are modified
See merge request idf/esp-idf!4001
Renz Christian Bagaporo [Thu, 14 Feb 2019 10:51:35 +0000 (18:51 +0800)]
make: remove unecessary inclusion of ldgen.mk
Renz Christian Bagaporo [Thu, 20 Dec 2018 01:30:01 +0000 (09:30 +0800)]
ci: test relink on template included file change
Renz Christian Bagaporo [Wed, 19 Dec 2018 14:16:58 +0000 (22:16 +0800)]
cmake,make: add dependencies on template included scripts
Renz Christian Bagaporo [Tue, 5 Feb 2019 03:05:16 +0000 (11:05 +0800)]
ldgen: create python script to find linker script includes
Renz Christian Bagaporo [Tue, 12 Feb 2019 01:55:08 +0000 (09:55 +0800)]
ci: use flasher_args.json for cmake ci run
Renz Christian Bagaporo [Fri, 1 Feb 2019 07:07:32 +0000 (15:07 +0800)]
ci: copy flasher_args.json to unit test output folder
Michael (XIAO Xufeng) [Thu, 14 Feb 2019 07:51:21 +0000 (15:51 +0800)]
sdio: temporarily disable the sdio example ci, since the runners have
some power issue
Renz Christian Bagaporo [Wed, 13 Feb 2019 02:52:22 +0000 (10:52 +0800)]
examples: fix specified location for event loop example test
Renz Christian Bagaporo [Wed, 13 Feb 2019 02:51:31 +0000 (10:51 +0800)]
example: fix expected logging output order for esp_event example
morris [Wed, 13 Feb 2019 07:57:11 +0000 (15:57 +0800)]
lwip: add linker fragment
Add linker fragment file for lwip component.
Angus Gratton [Thu, 14 Feb 2019 02:40:48 +0000 (10:40 +0800)]
Merge branch 'bugfix/external_rtc_start_fail' into 'master'
soc/rtc: bypass touchpad8 and touchpad9 current to external 32k crystal oscillator
See merge request idf/esp-idf!2441
liying [Sat, 2 Feb 2019 06:36:08 +0000 (14:36 +0800)]
translate cmake notes
Angus Gratton [Wed, 13 Feb 2019 03:26:39 +0000 (11:26 +0800)]
Merge branch 'feature/himem_readme' into 'master'
Proper README.md for himem example
See merge request idf/esp-idf!3599
maojianxin [Sat, 22 Dec 2018 06:19:46 +0000 (14:19 +0800)]
soc/rtc: fix RTC_TOUCH_TRIG_EN or RTC_ULP_TRIG_EN should keep RTC_PERIPH power on
Zhang Jun Yi [Wed, 23 May 2018 07:24:09 +0000 (15:24 +0800)]
soc/rtc: Bypass touchpad current to external 32k crystal oscillator
Jeroen Domburg [Wed, 31 Oct 2018 10:56:21 +0000 (18:56 +0800)]
Proper README.md for himem example
Angus Gratton [Mon, 11 Feb 2019 23:37:34 +0000 (07:37 +0800)]
Merge branch 'feature/sysview_max_tasks_configuration' into 'master'
sys_view: expose max tasks configuration parameter
See merge request idf/esp-idf!4239
Mahavir Jain [Tue, 5 Feb 2019 12:48:24 +0000 (18:18 +0530)]
sys_view: expose max tasks configuration parameter
Angus Gratton [Tue, 5 Feb 2019 01:15:22 +0000 (09:15 +0800)]
Merge branch 'bugfix/invoke_ota_operations_on_windows' into 'master'
Fix permission denied error on Windows for otatool, parttool
See merge request idf/esp-idf!4086
Angus Gratton [Tue, 5 Feb 2019 00:47:03 +0000 (08:47 +0800)]
Merge branch 'feature/predictable_event_dispatch_via_duplication' into 'master'
Predictable event handler dispatch
See merge request idf/esp-idf!3932
Angus Gratton [Tue, 5 Feb 2019 00:41:51 +0000 (08:41 +0800)]
Merge branch 'bugfix/mdns_notask_timer_crash' into 'master'
mdns: fix crash after init if no memory for task
See merge request idf/esp-idf!4171
Piyush Shah [Fri, 1 Feb 2019 12:51:46 +0000 (18:21 +0530)]
softap_prov: Changes in the example code as per changes to protocomm_httpd
Signed-off-by: Piyush Shah <piyush@espressif.com>
Piyush Shah [Fri, 1 Feb 2019 12:50:37 +0000 (18:20 +0530)]
protocomm_httpd: Allow applications to pass HTTPD handle
This will be useful if a webserver is already running and the application
does not want protocomm to start a new instance.
Signed-off-by: Piyush Shah <piyush@espressif.com>
Angus Gratton [Mon, 4 Feb 2019 06:27:38 +0000 (14:27 +0800)]
Merge branch 'bugfix/win_kconfig_backslash' into 'master'
tools: Fix Windows related Kconfig issues
See merge request idf/esp-idf!4206
Jiang Jiang Jian [Fri, 1 Feb 2019 13:33:39 +0000 (21:33 +0800)]
Merge branch 'bugfix/btdm_add_handle_in_gatts_conf_event_for_indication' into 'master'
Component/bt: add handle in gatts conf event for indication
See merge request idf/esp-idf!4024
Jiang Jiang Jian [Fri, 1 Feb 2019 13:27:29 +0000 (21:27 +0800)]
Merge branch 'bugfix/btdm_fix_write_char_crash_after_disconnection' into 'master'
Component/bt: fix write char crash after disconnection
See merge request idf/esp-idf!4209
Roland Dobai [Thu, 31 Jan 2019 13:10:14 +0000 (14:10 +0100)]
tools: Don't use backslashes in Kconfigs and ignore long lines to avoid errors
Closes https://github.com/espressif/esp-idf/issues/3012
Roland Dobai [Thu, 31 Jan 2019 12:41:31 +0000 (13:41 +0100)]
tools: check for incorrect case used in Kconfig filenames
Roland Dobai [Wed, 30 Jan 2019 14:13:20 +0000 (15:13 +0100)]
tools: Recognize backslashes in Kconfigs with CR+LF line endings
Sagar Bijwe [Fri, 1 Feb 2019 07:35:48 +0000 (13:05 +0530)]
nvs_flash: Detect key partition as uninitialised even if encrypted by bootloader
Currently, only erase operation performed by the application leads
to detection of NVS key partition as uninitialised. This change
adds additional checks for detecting partition as uninitialised,
when device boots first time right after encryption by bootloader.
Liu Zhi Fu [Fri, 1 Feb 2019 03:51:05 +0000 (11:51 +0800)]
esp32: fix some WiFi bugs
Fix following WiFi bugs:
1. Fix a crash bug which is caused by WiFi static TX buffer alloc/free.
2. Fix the bug that iphone fails to connect to ESP32 AP by enabling AP BAR receiving.
3. Fix the bug that ESP32 station fails to connect some APs, such as Xiaomi hotspot etc,
after reset.
Jiang Jiang Jian [Fri, 1 Feb 2019 02:02:14 +0000 (10:02 +0800)]
Merge branch 'mesh/malloc_routing_table' into 'master'
mesh: modify to malloc routing table
See merge request idf/esp-idf!4213
morris [Thu, 24 Jan 2019 04:43:06 +0000 (12:43 +0800)]
cleanup app_trace_to_host example
1. Cleanup the README of app_trace_to_host example based on the template.
2. Remove unused header files in the example.
3. Fix typos in public header file.
zhiweijian [Thu, 31 Jan 2019 03:28:55 +0000 (11:28 +0800)]
Component/bt: fix write char crash after disconnection
qiyuexia [Thu, 31 Jan 2019 09:46:11 +0000 (17:46 +0800)]
mesh: modify to malloc routing table
Anton Maklakov [Thu, 31 Jan 2019 06:46:10 +0000 (14:46 +0800)]
Merge branch 'bugfix/mdns_test_cleanup' into 'master'
mdns tests: execute test services only when running example in ci
See merge request idf/esp-idf!4174
He Yin Ling [Thu, 31 Jan 2019 06:31:16 +0000 (14:31 +0800)]
Merge branch 'feature/add_ipv6_related_change' into 'master'
modify test case to support ipv6
See merge request idf/esp-idf!2253
baohongde [Wed, 23 Jan 2019 10:04:01 +0000 (18:04 +0800)]
components/bt: Add precautions for esp_vhci_host_send_packet
baohongde [Thu, 31 Jan 2019 03:47:41 +0000 (11:47 +0800)]
components/bt: Fix crash when inquiry stop
Ivan Grokhotkov [Thu, 31 Jan 2019 03:02:20 +0000 (11:02 +0800)]
Merge branch 'bugfix/event_loop_library_memory_leak' into 'master'
Fix event loop library memory leak
See merge request idf/esp-idf!4201
Angus Gratton [Thu, 31 Jan 2019 01:11:35 +0000 (09:11 +0800)]
Merge branch 'feature/optionally_disable_https_from_ota_component' into 'master'
esp_https_ota: few feature enhancements
See merge request idf/esp-idf!4057
Renz Christian Bagaporo [Fri, 14 Dec 2018 06:28:04 +0000 (14:28 +0800)]
docs: add notes on handler dispatch order
Renz Christian Bagaporo [Mon, 10 Dec 2018 00:46:22 +0000 (08:46 +0800)]
esp_event: test that dispath order follows regisration order
Renz Christian Bagaporo [Mon, 10 Dec 2018 00:37:46 +0000 (08:37 +0800)]
esp_event: dispatch order follows registration order
Mahavir Jain [Wed, 30 Jan 2019 08:54:20 +0000 (14:24 +0530)]
esp_https_ota: add support for configurable ota buffer size
Closes https://github.com/espressif/esp-idf/issues/2998
Mahavir Jain [Mon, 31 Dec 2018 09:02:35 +0000 (14:32 +0530)]
esp_https_ota: add config option to (optionally) allow http
Renz Christian Bagaporo [Wed, 30 Jan 2019 09:14:01 +0000 (17:14 +0800)]
esp_event: detect leaks in unit test
Renz Christian Bagaporo [Tue, 29 Jan 2019 02:53:26 +0000 (10:53 +0800)]
esp_event: fix post data type inconsistency
Renz Christian Bagaporo [Tue, 29 Jan 2019 02:52:53 +0000 (10:52 +0800)]
esp_event: fix memory leaks
Closes https://github.com/espressif/esp-idf/issues/2886
David Cermak [Fri, 25 Jan 2019 19:24:30 +0000 (20:24 +0100)]
mdns tests: execute test services only when running example in ci
Test services may cause confussion (and did cause some GitHub/forum issues). This update runs test services only when example executed in ci. Also host name is a simple config entry if executed outside of ci.
Jiang Jiang Jian [Wed, 30 Jan 2019 09:50:25 +0000 (17:50 +0800)]
Merge branch 'bugfix/tw28445_wps_thread_safe' into 'master'
Bugfix/tw28445 wps thread safe
See merge request idf/esp-idf!4175
Ivan Grokhotkov [Wed, 30 Jan 2019 09:48:11 +0000 (17:48 +0800)]
Merge branch 'bugfix/git_describe_always_for_cmake' into 'master'
tools: Add --always option to git describe for Cmake
See merge request idf/esp-idf!4107
Ivan Grokhotkov [Wed, 30 Jan 2019 08:28:40 +0000 (16:28 +0800)]
Merge branch 'bugfix/cmake_stack_protector' into 'master'
esp32: disable stack protector for startup code (CMake)
See merge request idf/esp-idf!4198
David Cermak [Fri, 25 Jan 2019 15:17:07 +0000 (16:17 +0100)]
mdns: fix crash after init if no memory for task
mdns init first starts timer task, then starts service task. if service task failed to be created, timer task needs to be stopped too.
fixed https://ezredmine.espressif.cn:8765/issues/28466
Ivan Grokhotkov [Wed, 30 Jan 2019 06:27:51 +0000 (14:27 +0800)]
Merge branch 'bugfix/aws_iot_examples_cmake_build' into 'master'
examples: aws_iot: fix cmake build issue which used to pick dummy certificates
See merge request idf/esp-idf!4180
Angus Gratton [Wed, 30 Jan 2019 03:32:15 +0000 (11:32 +0800)]
Merge branch 'bugfix/add_missing_links_to_translation' into 'master'
Included missing links between English and Chinese documentation, where…
See merge request idf/esp-idf!4176
Angus Gratton [Wed, 30 Jan 2019 01:34:28 +0000 (09:34 +0800)]
Merge branch 'bugfix/doc_updates_from_github' into 'master'
Documenation updates from github
See merge request idf/esp-idf!4120
Angus Gratton [Wed, 30 Jan 2019 01:33:12 +0000 (09:33 +0800)]
Merge branch 'bugfix/mdns_crash_free_strdup' into 'master'
mdns: fixed crash on free undefined ptr if strdup is skipped
See merge request idf/esp-idf!4173
Angus Gratton [Wed, 30 Jan 2019 01:24:22 +0000 (09:24 +0800)]
Merge branch 'bugfix/correct_kconfigs' into 'master'
Correct Kconfigs according to the coding style
See merge request idf/esp-idf!4172
Angus Gratton [Wed, 30 Jan 2019 01:21:59 +0000 (09:21 +0800)]
Merge branch 'update/esptool_repo_sync' into 'master'
ci: Remove ALLOW_TO_SYNC_FROM_PUBLIC from esptool mirror repo
See merge request idf/esp-idf!4194
Roland Dobai [Tue, 29 Jan 2019 15:27:02 +0000 (16:27 +0100)]
tools: replace absolute URLs in Kconfig docs
Angus Gratton [Tue, 29 Jan 2019 14:03:05 +0000 (22:03 +0800)]
Merge branch 'bugfix/disable_kconfig_redundant_config_warnings_on_merge' into 'master'
Disable warnings on redundant config merge
See merge request idf/esp-idf!4168
Roland Dobai [Fri, 25 Jan 2019 16:10:53 +0000 (17:10 +0100)]
Correct Kconfigs according to the coding style
Ivan Grokhotkov [Tue, 29 Jan 2019 09:50:40 +0000 (17:50 +0800)]
Merge branch 'feature/eth_support_ip101g' into 'master'
support new Ethernet PHY (IP101)
See merge request idf/esp-idf!4187
Ivan Grokhotkov [Tue, 29 Jan 2019 09:41:00 +0000 (17:41 +0800)]
esp32: disable stack protector for startup code (CMake)
Files where stack protector is initialized should not be compiled with
stack protector enabled. This was done for Make but missing for CMake.
Fixes https://github.com/espressif/esp-idf/issues/2990.
Liu Zhi Fu [Tue, 29 Jan 2019 09:30:21 +0000 (17:30 +0800)]
esp32: fix WPS thread-safe
Fix WPS thread-safe bug
Jiang Jiang Jian [Tue, 29 Jan 2019 09:12:10 +0000 (17:12 +0800)]
Merge branch 'bugfix/coex_update_phy_to_fix_interrupt_wdt' into 'master'
esp32: update libphy.a to fix interrupt watchdog when WiFi and BT run at the same time and both enable modem sleep
See merge request idf/esp-idf!4191
David Cermak [Fri, 25 Jan 2019 16:19:13 +0000 (17:19 +0100)]
mdns: fixed crash on free undefined ptr after skipped strdup
Shortcircuit evaluation may cause skip of _mdns_strdup_check of any further question field, which after clear_rx_packet freed undefined memory.
Fixes https://ezredmine.espressif.cn:8765/issues/28465
morris [Mon, 28 Jan 2019 12:29:58 +0000 (20:29 +0800)]
ethernet: support new PHY (IP101)
1. Add support for new PHY IP101.
2. Re-enable GPIO0 output mode.
3. Clean up some docs.
Ivan Grokhotkov [Tue, 29 Jan 2019 06:03:55 +0000 (14:03 +0800)]
Merge branch 'feat/spi_slave_timing' into 'master'
feat(spi_slave): fine tune the timing of SPI slave
See merge request idf/esp-idf!3925