]>
granicus.if.org Git - esp-idf/log
Anton Maklakov [Tue, 25 Sep 2018 04:19:01 +0000 (12:19 +0800)]
build system: Fix checking the toolchain version on Windows
Angus Gratton [Wed, 26 Sep 2018 00:41:42 +0000 (08:41 +0800)]
Merge branch 'feature/py23_examples' into 'master'
Examples: Add Python 2&3 support
See merge request idf/esp-idf!3237
Angus Gratton [Tue, 25 Sep 2018 23:23:38 +0000 (07:23 +0800)]
Merge branch 'docs/general_notes_zh_CN' into 'master'
docs: translate the general-notes document into Chinese
See merge request idf/esp-idf!2867
Jiang Jiang Jian [Tue, 25 Sep 2018 11:48:33 +0000 (19:48 +0800)]
Merge branch 'feature/wifi_esptouch_support_both_multicast_and_broadcast_packet' into 'master'
esp32: esp-touch supports both multicast and broadcast packets
See merge request idf/esp-idf!3291
Ivan Grokhotkov [Tue, 25 Sep 2018 10:23:24 +0000 (18:23 +0800)]
Merge branch 'doc/fix_config_links' into 'master'
doc: Fix config links, add navigation lists to config items page
See merge request idf/esp-idf!3310
Roland Dobai [Fri, 21 Sep 2018 08:34:55 +0000 (10:34 +0200)]
examples: Use flushed print to see logs on the CI server
Roland Dobai [Mon, 10 Sep 2018 13:13:47 +0000 (15:13 +0200)]
Examples: Add Python 2&3 support
morris [Fri, 27 Jul 2018 10:11:30 +0000 (18:11 +0800)]
doc/general_notes:translate from en to zh_CN
translate the document [general-notes] into Chinese
XiaXiaotian [Tue, 14 Aug 2018 06:23:53 +0000 (14:23 +0800)]
esp32: esp-touch supports both multicast and broadcast packets
Previously, esp-touch only supports multicast packets which are
transmitted from cellphone. But for most dual frequency routers
whose SSIDs of 5G and 2.4G are the same, broadcast packets are
forwarded from 5G interface to 2.4G interface while multicast
packets are not. In order to make esp-touch work when cellphone
connects to 5G interface of these routers, esp-touch is improved
to support both multicast and broadcast packets. Meanwhile, new
APP which is compiled with Andriod or IOS library(>= v0.3.6.2)
must be used in this situation. Note that for some routers,
broadcast and multicast packets are forwarded from 5G interface
to 2.4G interface only when another WiFi device is connected to
2.4G interface of the router. Old APP which is compiled with
Android or IOS library(< v0.3.6.2) also works with this improvement
when cellphone connects to 2.4G interface of the router.
The Android and IOS library of new esp-touch APP is now available
on Github.
Android: https://github.com/EspressifApp/EsptouchForAndroid
IOS: https://github.com/EspressifApp/EsptouchForIOS
Angus Gratton [Tue, 25 Sep 2018 00:24:29 +0000 (08:24 +0800)]
Merge branch 'feature/mbedtls_mem_alloc_options' into 'master'
mbedtls: configurable options for controlling dynamic memory allocations
See merge request idf/esp-idf!3343
Angus Gratton [Tue, 25 Sep 2018 00:23:38 +0000 (08:23 +0800)]
Merge branch 'bugfix/python_gen_empty_partition' into 'master'
app_update: Make gen_empty_partition.py Python 2 & 3 compatible
See merge request idf/esp-idf!3347
Angus Gratton [Tue, 25 Sep 2018 00:20:06 +0000 (08:20 +0800)]
Merge branch 'feature/async_esp_http_client' into 'master'
Non Blocking `esp_http_perform()` API in esp_http_client
See merge request idf/esp-idf!3049
Angus Gratton [Tue, 25 Sep 2018 00:15:55 +0000 (08:15 +0800)]
Merge branch 'feature/nvs_encryption' into 'master'
nvs_flash: Add support for nvs encryption
See merge request idf/esp-idf!2700
Angus Gratton [Tue, 25 Sep 2018 00:01:57 +0000 (08:01 +0800)]
Merge branch 'bug_fix/multipage_blob_support' into 'master'
nvs_util: Fix generation of multipage blob data format
See merge request idf/esp-idf!3349
Jiang Jiang Jian [Mon, 24 Sep 2018 12:31:31 +0000 (20:31 +0800)]
Merge branch 'mesh/bugfix' into 'master'
mesh: bugfix
See merge request idf/esp-idf!3286
Roland Dobai [Mon, 24 Sep 2018 06:09:52 +0000 (08:09 +0200)]
app_update: Make gen_empty_partition.py Python 2 & 3 compatible
Closes https://github.com/espressif/esp-idf/issues/2457
Shivani Tipnis [Mon, 24 Sep 2018 09:13:26 +0000 (14:43 +0530)]
nvs_util: Fix multipage blob data format generate
Sagar Bijwe [Mon, 2 Jul 2018 11:10:43 +0000 (16:40 +0530)]
nvs_flash: Add support for nvs encryption
Mahavir Jain [Sat, 22 Sep 2018 12:22:10 +0000 (17:52 +0530)]
aws_iot: optimize dynamic memory by tweaking tls out buf content length
Mahavir Jain [Wed, 19 Sep 2018 09:59:20 +0000 (15:29 +0530)]
mbedtls: configurable options for controlling dynamic memory allocations
Modifies https://github.com/espressif/esp-idf/pull/2237
Jitin George [Wed, 29 Aug 2018 10:53:48 +0000 (16:23 +0530)]
examples/protocols/esp_http_client: Add example for asynchronous HTTP request
Jitin George [Tue, 7 Aug 2018 17:56:59 +0000 (23:26 +0530)]
esp_http_client: Add support for non-blocking feature in esp_http_client_perform() API
Four internal APIs `esp_http_client_connect()`, `http_client_prepare_first_line()`, `esp_http_client_request_send()` and
`esp_http_client_send_post_data()` API have been added for perfoming connection establishment (sync as well as async),
preparing first line, sending request and sending post data respectively.
In `transport_ssl`, `ssl_connect_async()` API has been added for establishing asynchronous connection.
Jitin George [Tue, 7 Aug 2018 17:54:57 +0000 (23:24 +0530)]
esp-tls: Add support for non blocking connect
Angus Gratton [Mon, 24 Sep 2018 03:53:29 +0000 (11:53 +0800)]
Merge branch 'feature/nvs_util_backport' into 'master'
nvs_util: Add changes for utility to support old and new multipage blob
See merge request idf/esp-idf!3270
Angus Gratton [Mon, 24 Sep 2018 03:19:41 +0000 (11:19 +0800)]
Merge branch 'feature/pthread_attributes' into 'master'
pthread : Add support for attributes
See merge request idf/esp-idf!2980
qiyueixa [Sun, 23 Sep 2018 13:09:59 +0000 (21:09 +0800)]
mesh: bugfix
1. suppport mesh type, mesh ID, router and IE crypt func&key at any time after mesh is initalized.
2. support modify parent at any time after mesh is configured.
3. modify manual networking example.
4. update header file.
5. fix issues in root conflicts handling.
6. add max length of beacon to menuconfig.
7. fix issue when received a beacon without DSSS.
Jiang Jiang Jian [Sun, 23 Sep 2018 02:58:44 +0000 (10:58 +0800)]
Merge branch 'bugfix/two_scenario_may_cause_no_disconnect_event_report' into 'master'
Wifi: bugfix of two sceanrio may cause no disconnect event report
See merge request idf/esp-idf!3322
Jiang Jiang Jian [Sun, 23 Sep 2018 00:39:34 +0000 (08:39 +0800)]
Merge branch 'bugfix/IPv6_TCP_connection_fail' into 'master'
lwip: fix the bug that IPv6 TCP connection fail
See merge request idf/esp-idf!3331
Anurag Kar [Fri, 10 Aug 2018 10:52:27 +0000 (16:22 +0530)]
pthread : Add support for attributes and few APIs
This introduces the following changes :
* Implmentation added for pthread attribute related functions :
* pthread_attr_init
* pthread_attr_destroy
* pthread_attr_setdetachstate
* pthread_attr_getdetachstate
* pthread_attr_getstacksize
* pthread_attr_setstacksize
* pthread_create now supports passing attributes/configs through pthread_attr_t structure
* pthread_mutex_timedlock added
* pthread_exit added
* memory for joinable thread is freed before returning from pthread_join
Jiang Jiang Jian [Fri, 21 Sep 2018 12:14:56 +0000 (20:14 +0800)]
Merge branch 'bugfix/wpa2_fixes_2' into 'master'
wpa_supplicant: more fixes from github
See merge request idf/esp-idf!3255
Deng Xin [Thu, 20 Sep 2018 04:09:03 +0000 (12:09 +0800)]
Wifi: bugfix of two sceanrio may cause no disconnect event report
Problem Description
set some of routers as the same ssid in the same channel, when 32 in the fast scan connect mode, there may no disconnect event report in that two sceanrio:
1. set the correct password and connect, if target router didn't report 32's auth req before timeout, the state machine change to init but no disconnect event report
2. set a wrong password, if router send disassoc or deauth after run, rather than wait 4 way handshake timeout, the state machine change to init but no disconnect event report
Root Cause
Because the routers are in the same channel, all of them are matched the ssid, so all of them can be instore in the rc list wait for connect, when the first one want to connect fail at auth or receive
disassoc or deauth when password wrong, the rc list is not empty, it can not send disconnect event because rc is not empty
Solution
1. put the fail the router in the blacklist
2. Judge whether there is another router can be connect, if it has, try to connect with the next one
VNC MR 561
Ivan Grokhotkov [Fri, 21 Sep 2018 06:07:41 +0000 (14:07 +0800)]
Merge branch 'feature/crosstool_backport' into 'master'
Backport of work of gcc8 toolchain to v3
See merge request idf/esp-idf!3154
Jeroen Domburg [Fri, 21 Sep 2018 02:57:16 +0000 (10:57 +0800)]
Merge branch 'feature/spi_sync_rebase' into 'master'
spi_master: add new polling mode to decrease time cost each transaction
See merge request idf/esp-idf!3120
zhangyanjiao [Thu, 20 Sep 2018 12:01:22 +0000 (20:01 +0800)]
lwip: fix the bug that IPv6 TCP connection fail
The lwip code didn't create an new mld group when netif is up,
this will lead to the server can't find the matching netif when
receiving NS(neighbor solicitation) packet
Angus Gratton [Fri, 21 Sep 2018 01:05:16 +0000 (11:05 +1000)]
docs: Don't show Kconfig.projbuild from MQTT submodule examples in docs
Angus Gratton [Thu, 20 Sep 2018 07:13:07 +0000 (17:13 +1000)]
doc: Render config items "Found in:" as a set of links to menus
Ivan Grokhotkov [Thu, 20 Sep 2018 12:03:21 +0000 (20:03 +0800)]
Merge branch 'feature/idf_py_print_flash_cmd' into 'master'
tiny-test-fw: Detect either 'download.config' or 'flash_project_args'
See merge request idf/esp-idf!3252
Michael (Xiao Xufeng) [Wed, 31 Jan 2018 03:15:23 +0000 (11:15 +0800)]
spi_master: add new polling mode to decrease time cost each transaction
Anton Maklakov [Thu, 20 Sep 2018 11:06:52 +0000 (19:06 +0800)]
Merge branch 'bugfix/py273_gen_esp32part' into 'master'
partition_table: Fix encoding for Python 2.7.3
See merge request idf/esp-idf!3330
Anton Maklakov [Wed, 19 Sep 2018 05:24:29 +0000 (13:24 +0800)]
espcoredump: Fix a test case of new gdb from the new toolchain
Anton Maklakov [Tue, 18 Sep 2018 06:49:08 +0000 (14:49 +0800)]
bluetooth: fix indentation warning
Anton Maklakov [Tue, 18 Sep 2018 06:16:19 +0000 (14:16 +0800)]
mqtt: silence a format warning
Anton Maklakov [Tue, 18 Sep 2018 03:44:24 +0000 (11:44 +0800)]
cmake: silence some warnings in coap, bt, expat, libsodium, lwip and examples/bluetooth
Anton Maklakov [Tue, 18 Sep 2018 05:07:21 +0000 (13:07 +0800)]
cmake: Add a compatible old GCC flag, fix the cmake example building
Anton Maklakov [Fri, 7 Sep 2018 13:37:27 +0000 (21:37 +0800)]
lwip: silence uninitialized and fallthrough warnings
Anton Maklakov [Fri, 7 Sep 2018 08:13:26 +0000 (16:13 +0800)]
vfs: fix a fallthrough comment to silence the warning
Anton Maklakov [Fri, 7 Sep 2018 12:44:25 +0000 (20:44 +0800)]
test/cxx: Test for exception from libstdc++ with -fno-exceptions
Alexey Gerenkov [Tue, 28 Aug 2018 04:22:12 +0000 (12:22 +0800)]
cxx: don’t define stubs for __throw_* functions
If exception support is disabled in IDF, and libstdc++ tries to throw
an exception, it will call __cxa_allocate_exception which is replaced
with abort in IDF.
We have a dramatically size reduction of the RO-section in binary when using '__throw_'-stubs in GCC5
In the case of using GCC8, we are faced with 'multiple definition' errors when using '__throw_'-stubs.
Good that we don't have the size problem due to gcc8
Anton Maklakov [Fri, 31 Aug 2018 10:59:37 +0000 (18:59 +0800)]
examples/sdio: Fix an uninitialized buffer which sometimes caused a test fail
Alexey Gerenkov [Thu, 28 Jun 2018 13:38:17 +0000 (16:38 +0300)]
gcov: use GCC API to control GCOV data dumps
Anton Maklakov [Thu, 30 Aug 2018 03:24:34 +0000 (11:24 +0800)]
build system: Add a compatible old GCC flag
Ivan Grokhotkov [Tue, 28 Aug 2018 10:18:59 +0000 (18:18 +0800)]
bt: disable implicit fall through warnings
Ivan Grokhotkov [Tue, 28 Aug 2018 09:31:48 +0000 (17:31 +0800)]
bt: silence unused const variables warning
Ivan Grokhotkov [Wed, 29 Aug 2018 04:59:58 +0000 (12:59 +0800)]
examples/bluetooth: silence unused const variables warnings
Ivan Grokhotkov [Tue, 7 Aug 2018 17:06:08 +0000 (20:06 +0300)]
unity: silence unused const variables warning
Ivan Grokhotkov [Wed, 29 Aug 2018 13:30:03 +0000 (21:30 +0800)]
docs: generate toolchain download links
Anton Maklakov [Mon, 27 Aug 2018 03:03:15 +0000 (11:03 +0800)]
build system: and gcc8 warnings compatibility option
Anton Maklakov [Mon, 27 Aug 2018 03:43:34 +0000 (11:43 +0800)]
build system: print some information about the compiler
Anton Maklakov [Fri, 3 Aug 2018 08:28:33 +0000 (16:28 +0800)]
ci: specify default docker image tag
Anton Maklakov [Mon, 27 Aug 2018 03:04:08 +0000 (11:04 +0800)]
toolchain: Set the supported toolchain version in a separate file
Jiang Jiang Jian [Thu, 20 Sep 2018 10:43:58 +0000 (18:43 +0800)]
Merge branch 'bugfix/fix_the_bug_create_socket_fail' into 'master'
LWIP: fix the bug that failed to create socket
See merge request idf/esp-idf!3300
Roland Dobai [Thu, 20 Sep 2018 10:01:54 +0000 (12:01 +0200)]
partition_table: Fix encoding for Python 2.7.3
struct.pack can handle Unicode argument in latest Python 2.7 but cannot
(at least) in 2.7.3.
Roland Dobai [Wed, 12 Sep 2018 11:30:36 +0000 (13:30 +0200)]
tiny-test-fw: Detect either 'download.config' or 'flash_project_args'
Angus Gratton [Thu, 20 Sep 2018 06:38:25 +0000 (14:38 +0800)]
Merge branch 'test/fix_ut_cant_process_test_command' into 'master'
test: fix ut can't process test command
See merge request idf/esp-idf!3306
Angus Gratton [Thu, 20 Sep 2018 05:46:08 +0000 (13:46 +0800)]
Merge branch 'feature/ecc_crypto_wrappers' into 'master'
wpa_supplicant: Implement BIGNUM and ECC crypto wrapper apis for ESP using mbedtls
See merge request idf/esp-idf!3225
Ivan Grokhotkov [Thu, 20 Sep 2018 04:10:18 +0000 (12:10 +0800)]
Merge branch 'bugfix/py23_nvs_flash_division' into 'master'
nvs_flash: fix division for Python 2 & 3
See merge request idf/esp-idf!3292
Ivan Grokhotkov [Thu, 20 Sep 2018 04:09:12 +0000 (12:09 +0800)]
Merge branch 'feature/py23_partition_table' into 'master'
partition_table: Add Python 2 & 3 support
See merge request idf/esp-idf!3290
Ivan Grokhotkov [Thu, 20 Sep 2018 04:05:50 +0000 (12:05 +0800)]
Merge branch 'feature/roll_back_python_future' into 'master'
Downgrade python-future required version to 0.15.2
See merge request idf/esp-idf!3319
Ivan Grokhotkov [Thu, 20 Sep 2018 04:05:07 +0000 (12:05 +0800)]
Merge branch 'bugfix/ci_cmake_examples' into 'master'
CI/cmake: Fix cmake example build failures, gcov
See merge request idf/esp-idf!3296
Jiang Jiang Jian [Thu, 20 Sep 2018 04:04:18 +0000 (12:04 +0800)]
Merge branch 'bugfix/btdm_fix_crash_when_test_multi_connect' into 'master'
Component/bt: fix crash when test multi_connect
See merge request idf/esp-idf!3274
Ivan Grokhotkov [Thu, 20 Sep 2018 03:59:51 +0000 (11:59 +0800)]
Merge branch 'bugfix/ethernet_infinite_loop' into 'master'
ethernet: fix infinite loop when init phy or reset mac
See merge request idf/esp-idf!3307
Ivan Grokhotkov [Thu, 20 Sep 2018 03:58:40 +0000 (11:58 +0800)]
Merge branch 'bugfix/parttool_spaces' into 'master'
Remove trailing spaces from parttool.py output
See merge request idf/esp-idf!3317
Jiang Jiang Jian [Thu, 20 Sep 2018 02:54:43 +0000 (10:54 +0800)]
Merge branch 'bugfix/btdm_fix_iphoneX_error_when_get_wifi_list' into 'master'
Component/bt: fix iPhoneX error when getting wifi list
See merge request idf/esp-idf!3303
Jiang Jiang Jian [Thu, 20 Sep 2018 02:47:37 +0000 (10:47 +0800)]
Merge branch 'feature/btdm_add_clear_rand_addr_API' into 'master'
component/bt: add clear rand address API
See merge request idf/esp-idf!3137
morris [Wed, 19 Sep 2018 02:45:53 +0000 (10:45 +0800)]
ethernet: fix infinite loop when init phy or reset mac
1. fix infinite loop problem when init phy device
2. fix infinite loop problem when reset mac
3. fix little bugs in ethernetif_init
4. fix incompatible return value between lwip and esp-idf
Closes https://github.com/espressif/esp-idf/issues/2331
Closes https://github.com/espressif/esp-idf/issues/2141
Angus Gratton [Wed, 19 Sep 2018 23:27:37 +0000 (07:27 +0800)]
Merge branch 'bugfix/use_component_srcs' into 'master'
List files manually for recently added components
See merge request idf/esp-idf!3315
Shivani Tipnis [Wed, 12 Sep 2018 12:17:24 +0000 (17:47 +0530)]
nvs_util: Add support for old and new multipage blob
Deomid Ryabkov [Tue, 18 Sep 2018 12:38:34 +0000 (15:38 +0300)]
Downgrade python-future required version to 0.15.2
It works fine and this way python-future from Ubuntu 16.04 and 18.04 can be used.
zhangyanjiao [Tue, 18 Sep 2018 03:14:09 +0000 (11:14 +0800)]
lwip: fix the bug that failed to create socket
Closes: https://github.com/espressif/esp-idf/issues/2403
https://github.com/espressif/esp-idf/issues/2414
Ivan Grokhotkov [Wed, 19 Sep 2018 09:39:58 +0000 (17:39 +0800)]
Merge branch 'test/fix_incorrect_connect_ap_command' into 'master'
test: fix case use depreacated sta connect command
See merge request idf/esp-idf!3309
Ivan Grokhotkov [Wed, 19 Sep 2018 09:32:08 +0000 (17:32 +0800)]
Merge branch 'bugfix/startup_detect_single_core' into 'master'
esp32: abort when running on single core chip in dual core mode
See merge request idf/esp-idf!3308
Renz Bagaporo [Wed, 19 Sep 2018 08:48:31 +0000 (16:48 +0800)]
tcp_transport: list files manually in component cmake file
Renz Bagaporo [Wed, 19 Sep 2018 08:48:12 +0000 (16:48 +0800)]
mqtt: list files manually in component cmake file
Angus Gratton [Wed, 19 Sep 2018 06:10:46 +0000 (16:10 +1000)]
doc: Re-add summaries of what children each menu item has
Slightly different to the original version of this, but same goal.
Angus Gratton [Wed, 19 Sep 2018 05:29:09 +0000 (15:29 +1000)]
doc: Replace :envvar: config links with :ref:
zhiweijian [Tue, 18 Sep 2018 12:48:28 +0000 (20:48 +0800)]
Component/bt: fix iPhoneX error when getting wifi list
Ivan Grokhotkov [Wed, 19 Sep 2018 03:34:34 +0000 (11:34 +0800)]
esp32: abort when running on single core chip in dual core mode
Ref. https://esp32.com/viewtopic.php?f=2&t=7307
Sagar Bijwe [Fri, 31 Aug 2018 13:55:48 +0000 (19:25 +0530)]
wpa_supplicant: Implement BIGNUM and ECC crypto wrapper apis for ESP using mbedtls
He Yin Ling [Wed, 19 Sep 2018 05:31:56 +0000 (13:31 +0800)]
test: fix case use depreacated sta connect command
Angus Gratton [Wed, 19 Sep 2018 04:39:24 +0000 (12:39 +0800)]
Merge branch 'bugfix/py23_unit_test' into 'master'
Correct Python 3 support for some test related scripts
See merge request idf/esp-idf!3236
Angus Gratton [Wed, 19 Sep 2018 01:25:24 +0000 (11:25 +1000)]
examples: Copy ca_cert.pem into both example project dirs
Keeps projects all-in-one under a single directory.
Angus Gratton [Tue, 18 Sep 2018 04:23:56 +0000 (14:23 +1000)]
cmake: Fix some failing example builds, fix gcov
He Yin Ling [Tue, 18 Sep 2018 02:55:41 +0000 (10:55 +0800)]
test: ut can't process test command:
check ut reset done condition is not correct. If bootup pattern already
exist in cache, we will return without waiting for DUT bootup.
Angus Gratton [Thu, 13 Sep 2018 04:32:41 +0000 (14:32 +1000)]
ci: Split build_examples jobs into make & cmake
Fix problem where failures in make were being ignored.
Deomid Ryabkov [Tue, 18 Sep 2018 12:10:03 +0000 (15:10 +0300)]
Remove trailing spaces from parttool.py output
Roland Dobai [Mon, 17 Sep 2018 12:27:36 +0000 (14:27 +0200)]
partition_table: Add Python 2 & 3 support
Jiang Jiang Jian [Tue, 18 Sep 2018 12:06:38 +0000 (20:06 +0800)]
Merge branch 'bugfix/btdm_fix_save_error_key_in_smp_when_reconnect' into 'master'
Component/bt: fix save error key in smp when reconnect
See merge request idf/esp-idf!3251
Roland Dobai [Mon, 10 Sep 2018 13:04:30 +0000 (15:04 +0200)]
Correct Python 3 support for some test related scripts
Ivan Grokhotkov [Tue, 18 Sep 2018 07:10:17 +0000 (15:10 +0800)]
Merge branch 'feature/lwip_task_affinity' into 'master'
lwip: allow setting LwIP tasks affinity via sdkconfig
See merge request idf/esp-idf!2913
Angus Gratton [Tue, 18 Sep 2018 00:07:41 +0000 (08:07 +0800)]
Merge branch 'feature/cleanup_freertos_hooks' into 'master'
Cleanup freertos idle/tick hooks functionality
See merge request idf/esp-idf!3131