]>
granicus.if.org Git - esp-idf/log
Daniel Campora [Mon, 14 Nov 2016 23:46:53 +0000 (00:46 +0100)]
StaticQueue_t needs to have the same size as xQUEUE.
Without this change, building FreeRTOS with static allocation enabled succeeds, but trying to create a queue from a static buffer causes an assert because the size of static and dynamic queues differ.
Wu Jian Gang [Tue, 22 Nov 2016 11:19:10 +0000 (19:19 +0800)]
Merge branch 'bugfix/tw8727_pc_send_random_pkt_cause_esp32_watchdog' into 'master'
esp32: fix random pkt cause esp32 watchdog
This change fixes the ESP32 watchdog issue. When the MPDU of AMPDU is longer than 1600B,
esp32 will check whether the last 4B is
DEADBEEF , if it's not
DEADBEEF , it will assert
and the assert will cause esp32 watchdog. The solution is to init the last 4B to
DEADBEEF
when malloc new ebuf for the packet longer than 1600B.
See merge request !233
Wu Jian Gang [Tue, 22 Nov 2016 06:45:44 +0000 (14:45 +0800)]
Merge branch 'bugfix/arp_queue_failed' into 'master'
report the arp queue fail result
See merge request !227
Ivan Grokhotkov [Tue, 22 Nov 2016 05:26:56 +0000 (13:26 +0800)]
Merge branch 'doc/pr103_cleanup' into 'master'
Documentation cleanup
From @kryzchb, github pull request #103
See merge request !214
Jeroen Domburg [Tue, 22 Nov 2016 04:12:31 +0000 (12:12 +0800)]
Merge branch 'bugfix/gpio_config_pullup' into 'master'
Fix pullups is not configured by gpio_config
https://github.com/espressif/esp-idf/issues/110
https://github.com/espressif/esp-idf/pull/111
See merge request !226
Wu Jian Gang [Tue, 22 Nov 2016 03:56:35 +0000 (11:56 +0800)]
Merge branch 'feature/tw8799_low_level_output_optimize' into 'master'
Feature/tw8799 low level output optimize
Fix a potential memory crash error in low_level_output
See merge request !224
Liu Zhi Fu [Tue, 22 Nov 2016 03:46:10 +0000 (11:46 +0800)]
esp32: fix random pkt cause esp32 watchdog
This change fixes the ESP32 watchdog issue. When the MPDU of AMPDU is longer than 1600B,
esp32 will check whether the last 4B is
DEADBEEF , if it's not
DEADBEEF , it will assert
and the assert will cause esp32 watchdog. The solution is to init the last 4B to
DEADBEEF
when malloc new ebuf for the packet longer than 1600B.
tianzhongxing [Mon, 21 Nov 2016 06:09:52 +0000 (14:09 +0800)]
components/lwip/arp: change the arp dropping packet function
LWIP will drop the oldest package at the arp packet cache queue and return "ERR_OK"
We change it that ARP level will drop the current packet and return "ERR_MEM" to tell user that you should send the packet again latter.
Ivan Grokhotkov [Mon, 21 Nov 2016 17:57:01 +0000 (01:57 +0800)]
Merge branch 'driver_merge_tmp/merge_rmt' into 'master'
RMT driver code and example
* add RMT simple driver code.
* add RMT module in periph_ctrl.c/.h
* add infrared RMT example. Will add readme later.
See merge request !190
Wangjialin [Mon, 21 Nov 2016 17:31:56 +0000 (01:31 +0800)]
rmt: add documentation
Wangjialin [Thu, 10 Nov 2016 03:23:40 +0000 (11:23 +0800)]
add RMT driver and example
Wu Jian Gang [Mon, 21 Nov 2016 11:43:51 +0000 (19:43 +0800)]
Merge branch 'feature/ipv6_api' into 'master'
Ipv6 interface:add branch for ipv6 interface
See merge request !199
Angus Gratton [Mon, 21 Nov 2016 09:46:21 +0000 (17:46 +0800)]
Merge branch 'feature/bignum_rsa' into 'master'
hwcryto bignum support for RSA operations
Supporting RSA with hardware bignum directives.
Configurable via menuconfig to enable/disable, and to choose between busywaiting and interrupt driven completion.
May still be some performance tweaks possible.
TW7111
See merge request !92
Liu Zhi Fu [Mon, 21 Nov 2016 08:08:39 +0000 (16:08 +0800)]
lwip: remove useless printf info
Angus Gratton [Mon, 21 Nov 2016 07:08:22 +0000 (18:08 +1100)]
mbedtls hardware bignum: Use memcpy instead of REG_WRITE/REG_READ in a loop
Removes memory barriers for better performance, thanks Ivan for pointing
this out.
Manually unrolling the loop further seemed like diminishing returns.
Gabe [Sat, 19 Nov 2016 18:03:15 +0000 (10:03 -0800)]
Pullup is not configured by gpio_config #110
tzx [Thu, 10 Nov 2016 03:24:31 +0000 (11:24 +0800)]
ipv6 interface: add branch for ipv6 interface
Ivan Grokhotkov [Mon, 21 Nov 2016 02:58:58 +0000 (10:58 +0800)]
Merge branch 'feature/support_build_multiple_bin' into 'master'
support build multiple bin for SSC
We need to build multiple SSC bin with different feature configs to do test.
For example, we need different SSC bins to test socket API blocking/non-blocking usage with same test cases.
SSC has a same branch to support build all pre-configured bins using `./gen_misc_ng.sh`. It will copy all bins to `./SSC/ssc_bin/`.
This MR will change the artifacts path for `build_ssc` job and the `BIN_PATH` for test jobs using SSC.
See merge request !219
Krzysztof [Wed, 16 Nov 2016 19:27:55 +0000 (20:27 +0100)]
Doxygen configuration clean up
Krzysztof [Wed, 16 Nov 2016 19:17:44 +0000 (20:17 +0100)]
doc: Index clean up
Krzysztof [Wed, 16 Nov 2016 19:16:47 +0000 (20:16 +0100)]
doc: Formating clean up
Krzysztof [Wed, 16 Nov 2016 19:14:48 +0000 (20:14 +0100)]
doc: API Reference - examples & fixes
Krzysztof [Wed, 16 Nov 2016 19:13:18 +0000 (20:13 +0100)]
doc: Documenting Code clean up
Krzysztof [Wed, 16 Nov 2016 19:11:32 +0000 (20:11 +0100)]
docs: Hyperlinks to guides
Wu Jian Gang [Mon, 21 Nov 2016 01:30:09 +0000 (09:30 +0800)]
Merge branch 'feature/tw8798_add_phy_printf_into_libcore' into 'master'
esp32: add phy_printf
1. add phy_printf into libcore
2. update libphy.a which has important optimization for ht40 traffic
See merge request !222
Liu Zhi Fu [Sun, 20 Nov 2016 09:05:44 +0000 (17:05 +0800)]
lwip: rework for low_level_output
Liu Zhi Fu [Sat, 19 Nov 2016 14:25:30 +0000 (22:25 +0800)]
lwip: optimize low_level_output
When the parameter pbuf for low_level_output is a list, malloc a new pbuf of
which the length equals to the total length of pbuf and send the new pbuf to L2
Liu Zhi Fu [Fri, 18 Nov 2016 13:11:54 +0000 (21:11 +0800)]
esp32: add phy_printf
1. add phy_printf into libcore
2. update libphy.a which has important optimization for ht40 traffic
Ivan Grokhotkov [Fri, 18 Nov 2016 12:56:54 +0000 (20:56 +0800)]
Merge branch 'feature/save_logs_to_test_report' into 'master'
save logs as test_report artifacts
save all logs as test report artifacts.
Testers only need to download artifacts for test report to analysis test result.
See merge request !217
Ivan Grokhotkov [Fri, 18 Nov 2016 12:46:03 +0000 (20:46 +0800)]
Merge branch 'feature/phy_init' into 'master'
PHY init support
This change set adds PHY init support and fixes NVS initialization.
Some configuration options for PHY init process are added to menuconfig.
See merge request !206
Ivan Grokhotkov [Fri, 18 Nov 2016 12:34:54 +0000 (20:34 +0800)]
docs: update partition tables documentation
Ivan Grokhotkov [Fri, 18 Nov 2016 11:17:13 +0000 (19:17 +0800)]
nvs, spi_flash: handle case when source data is in DROM
Ivan Grokhotkov [Thu, 17 Nov 2016 17:18:39 +0000 (01:18 +0800)]
phy_init: reduce the amount of hardwired logic, add coexist init
Angus Gratton [Wed, 16 Nov 2016 01:22:32 +0000 (12:22 +1100)]
phy init data: Read PHY init data partition offset from menuconfig
Ivan Grokhotkov [Tue, 15 Nov 2016 10:36:18 +0000 (18:36 +0800)]
add PHY init support
Ivan Grokhotkov [Tue, 15 Nov 2016 10:35:10 +0000 (18:35 +0800)]
partition_table: update layouts, remove unused subtypes, sync with header file
Ivan Grokhotkov [Tue, 15 Nov 2016 10:24:56 +0000 (18:24 +0800)]
nvs: allow nvs_flash_init to be called more than once
Also don’t assert in nvs_* functions if nvs_flash_init wasn’t called,
and make nvs_flash_init_custom an internal API for unit tests.
Ivan Grokhotkov [Tue, 15 Nov 2016 10:23:29 +0000 (18:23 +0800)]
nvs: initialize using layout from partition table
Wu Jian Gang [Fri, 18 Nov 2016 07:50:50 +0000 (15:50 +0800)]
Merge branch 'feature/openssl' into 'master'
OpenSSL API examples
add openssl demo
See merge request !198
Angus Gratton [Fri, 18 Nov 2016 05:38:22 +0000 (16:38 +1100)]
mbedtls hardware bignum: Expose ESP-only bignum API in wrapper mbedtls/bignum.h
Angus Gratton [Fri, 18 Nov 2016 04:53:00 +0000 (15:53 +1100)]
mbedtls hardware bignum: Support "RSA" interrupt for end of operation
Allows CPU to do other things which bignum operation is in
progress.
Angus Gratton [Fri, 18 Nov 2016 03:26:02 +0000 (14:26 +1100)]
mbedtls hardware RSA: Put into menuconfig, squash warnings
All combinations of enabling/disabling hardware acceleration no longer
show unused warnings.
Angus Gratton [Fri, 18 Nov 2016 02:44:37 +0000 (13:44 +1100)]
mbedtls hardware RSA: Combine methods for calculating M' & r inverse
Remove redundant gcd calculation, use consistent terminology.
Also remove leftover debugging code
Dong Heng [Wed, 16 Nov 2016 12:37:51 +0000 (20:37 +0800)]
mbedtls hardware RSA: Fix "mbedtls_mpi_exp_mod" hardware calculations
Dong Heng [Fri, 18 Nov 2016 02:07:34 +0000 (10:07 +0800)]
components/openssl_demo: remove the apache license header and add cc license head
Wu Jian Gang [Thu, 17 Nov 2016 13:03:45 +0000 (21:03 +0800)]
Merge branch 'bugfix/taskwdt' into 'master'
taskwdt fixes: better handling of empty/emptying wdt task list, lock task struct while feeding
As in description.
See merge request !212
Jeroen Domburg [Thu, 17 Nov 2016 12:21:12 +0000 (20:21 +0800)]
Merge with master; merge Doxygen config
Ivan Grokhotkov [Thu, 17 Nov 2016 11:00:03 +0000 (19:00 +0800)]
Merge branch 'feature/docs_general_notes' into 'master'
Docs: new documentation and warnings cleanup
This change set
- adds a high-level description of application startup flow. Some parts are missing, but hopefully we can use this description as a base to expand on.
- adds a few notes about memory regions and their use in ESP-IDF.
- add SPI flash and partition APIs page
- fixes all Doxygen warnings in header files
- enables build failures on new Doxygen warnings
See merge request !201
Jeroen Domburg [Thu, 17 Nov 2016 10:05:47 +0000 (18:05 +0800)]
Make sure task wdt also does the right thing when triggered when flash is disabled
Angus Gratton [Thu, 17 Nov 2016 09:42:03 +0000 (17:42 +0800)]
Merge branch 'bugfix/secure_boot_fixes' into 'master'
Secure boot related fixes
Fix some issues (mostly build system) from the secure boot implementation
Also refactor the way submodule checks are applied to make them more reliable.
See merge request !207
Yinling [Thu, 17 Nov 2016 06:02:46 +0000 (14:02 +0800)]
support build multiple bin for SSC
Yinling [Thu, 17 Nov 2016 05:45:53 +0000 (13:45 +0800)]
save logs as test_report artifacts
Wu Jian Gang [Thu, 17 Nov 2016 04:46:48 +0000 (12:46 +0800)]
Merge branch 'bugfix/tw8706_softap_join_ap_return_wrong' into 'master'
esp32: tw8706 softap join ap return wrong code
In softap/null mode, esp_wifi_connect will return ESP_ERR_WIFI_MODE
See merge request !216
Jeroen Domburg [Thu, 17 Nov 2016 04:33:31 +0000 (12:33 +0800)]
Add docs build artifacts to gitignore
Jeroen Domburg [Thu, 17 Nov 2016 04:09:08 +0000 (12:09 +0800)]
Add documentation
Liu Zhi Fu [Thu, 17 Nov 2016 03:56:22 +0000 (11:56 +0800)]
esp32: tw8706 softap join ap return wrong code
In softap/null mode, esp_wifi_connect will return ESP_ERR_WIFI_MODE
Wu Jian Gang [Thu, 17 Nov 2016 03:53:41 +0000 (11:53 +0800)]
Merge branch 'bugfix/tw8746_restore_cause_load_fail' into 'master'
nvs_flash: adjust the nvs_flash start sector number
Modify the nvs flash start sector from 6 to 9 because the partition table bin burn address is modified from 0x4000 to 0x8000
See merge request !215
Wu Jian Gang [Thu, 17 Nov 2016 03:52:39 +0000 (11:52 +0800)]
Merge branch 'feature/tw8743_menuconfig_add_L2toL3_copy_option' into 'master'
lwip: add option to memcopy packet from L2 to L3
Menuconfig add an option to copy the packet from layer2 (WIFI driver) to layer3 (LWIP), default not copy
See merge request !211
Liu Zhi Fu [Thu, 17 Nov 2016 03:44:39 +0000 (11:44 +0800)]
docs/nvs_flash: update the nvs flash offset comment according review
Angus Gratton [Thu, 17 Nov 2016 03:35:06 +0000 (11:35 +0800)]
Merge branch 'doc/pr65_openocd_clone' into 'master'
Simplified "Installing OpenOCD" with git clone --recursive
Github pull request #65
See merge request !213
Angus Gratton [Wed, 16 Nov 2016 07:03:55 +0000 (18:03 +1100)]
build system: Use correct objcopy arguments for object format
Avoid ambiguous argument error on some platforms
Ref internal discussion !198
squash! build system: Use correct objcopy --input-target argument not --input
Liu Zhi Fu [Thu, 17 Nov 2016 03:22:20 +0000 (11:22 +0800)]
nvs_flash: adjust the nvs_flash start sector number
Modify the nvs flash start sector from 6 to 9
Liu Zhi Fu [Thu, 17 Nov 2016 02:53:00 +0000 (10:53 +0800)]
lwip: default ESP_L2_TO_L3_COPY to 0
Liu Zhi Fu [Thu, 17 Nov 2016 02:22:20 +0000 (10:22 +0800)]
lwip:refractor to the description about this menuconfig option
Benjamin Vernoux [Fri, 28 Oct 2016 20:25:14 +0000 (22:25 +0200)]
Simplified "Installing OpenOCD" with git clone --recursive
Angus Gratton [Wed, 16 Nov 2016 00:45:39 +0000 (11:45 +1100)]
build system: When embedding binary files, fix re-generating on partial builds
When embedding a generated file (ie secure boot public key data), the
file was being re-generated each time.
Angus Gratton [Wed, 16 Nov 2016 00:18:40 +0000 (11:18 +1100)]
micro-ecc: Add submodule dependency
Closes github #100
Angus Gratton [Wed, 16 Nov 2016 00:12:48 +0000 (11:12 +1100)]
build system: Refactor SubmoduleCheck to work project-wide
Required at project level because some components use header files in
other components' submodules, and one component with a
submodule (esptool.py) doesn't have or need a component.mk.
Angus Gratton [Tue, 15 Nov 2016 23:35:47 +0000 (10:35 +1100)]
build system: Fix embedding files which are themselves generated by the
build system
Used by secure boot, which generates the secure boot signing key inside build/.
Angus Gratton [Wed, 16 Nov 2016 22:09:06 +0000 (06:09 +0800)]
Merge branch 'bugfix/example_warning_cleanup' into 'master'
Example cleanup, raise warning level
See merge request !209
Angus Gratton [Wed, 16 Nov 2016 21:59:44 +0000 (08:59 +1100)]
Merge branch 'master' into bugfix/example_warning_cleanup
Ivan Grokhotkov [Tue, 15 Nov 2016 17:35:09 +0000 (01:35 +0800)]
docs: fix Doxygen warnings, fail CI build on Doxygen warnings
Ivan Grokhotkov [Wed, 16 Nov 2016 13:33:04 +0000 (21:33 +0800)]
docs: fix broken links, formatting, add SPI flash and partition APIs
Ivan Grokhotkov [Mon, 14 Nov 2016 07:40:54 +0000 (15:40 +0800)]
docs: add description of ESP-IDF application startup flow and memory layout
Liu Zhi Fu [Wed, 16 Nov 2016 13:11:17 +0000 (21:11 +0800)]
lwip: modify menuconfig comments according to review
Jeroen Domburg [Wed, 16 Nov 2016 09:53:50 +0000 (17:53 +0800)]
taskwdt fixes: better handling of empty/emptying wdt task list, lock task struct while feeding
Wang Jia Lin [Wed, 16 Nov 2016 09:23:08 +0000 (17:23 +0800)]
Merge branch 'bugfix/uart_isr_switch_context' into 'master'
bugfix/uart_isr_switch_context: add switching context in uart ISR.
1. add switching context in uart ISR
2. remove duplicated #include in uart.c
3. modify example in uart.h(will later add examples to idf/examples)
See merge request !203
Wangjialin [Wed, 16 Nov 2016 09:11:18 +0000 (17:11 +0800)]
Merge branch 'master' into bugfix/uart_isr_switch_context
Liu Zhi Fu [Wed, 16 Nov 2016 08:24:41 +0000 (16:24 +0800)]
lwip: add option to memcopy packet from L2 to L3
Menuconfig add an option to copy the packet from layer2 (WIFI driver) to layer3 (LWIP), default not copy
Angus Gratton [Wed, 16 Nov 2016 06:15:55 +0000 (17:15 +1100)]
ringbuf: Fix case where xTaskGetTickCount() overflows but task timeout point doesn't
Wu Jian Gang [Wed, 16 Nov 2016 06:55:39 +0000 (14:55 +0800)]
Merge branch 'feature/tw8427_softap_support_bridge' into 'master'
esp32: softap supports bridge
Softap supports bridge, then the stations associated with esp32 softap can send/receive traffic from each other
See merge request !210
Wangjialin [Wed, 16 Nov 2016 06:51:36 +0000 (14:51 +0800)]
Merge branch 'master' into bugfix/uart_isr_switch_context
Wangjialin [Wed, 16 Nov 2016 06:44:06 +0000 (14:44 +0800)]
driver: bugfix/fix uart parity and frame error bug
1. modify definition for uart_parity_t
2. fix bugs in uart interrupt handler for parity err and frame err.
Liu Zhi Fu [Wed, 16 Nov 2016 05:20:49 +0000 (13:20 +0800)]
esp32: softap supports bridge
Softap supports bridge, then the stations associated with esp32 softap can send/receive traffic from each other
Angus Gratton [Wed, 16 Nov 2016 04:42:38 +0000 (15:42 +1100)]
Build system: Raise warning level
Default esp-idf builds now show -Wextra warnings (except for a few:
signed/unsigned comparison, unused parameters, old-style C declarations.)
CI building of examples runs with that level raised to -Werror, to catch
those changes going into the main repo.
Angus Gratton [Wed, 16 Nov 2016 03:20:47 +0000 (14:20 +1100)]
examples: Update component.mk for new conventions
Dong Heng [Wed, 16 Nov 2016 03:11:01 +0000 (11:11 +0800)]
feature/openssl: fixup the file and code style
Dong Heng [Wed, 16 Nov 2016 02:46:03 +0000 (10:46 +0800)]
feature/openssl: fixup some insufficient
Wangjialin [Tue, 15 Nov 2016 17:31:02 +0000 (01:31 +0800)]
driver: fix header file warnings for Doxygen.
Dong Heng [Tue, 15 Nov 2016 08:39:29 +0000 (16:39 +0800)]
Merge branch 'master' into feature/bignum_rsa
Dong Heng [Tue, 15 Nov 2016 07:20:48 +0000 (15:20 +0800)]
Merge branch 'master' into feature/openssl
Dong Heng [Tue, 15 Nov 2016 07:08:51 +0000 (15:08 +0800)]
feature/openssl: add the openssl server demo
Dong Heng [Tue, 15 Nov 2016 07:04:21 +0000 (15:04 +0800)]
feature/openssl: add openssl server demo and remove some check function
Jeroen Domburg [Tue, 15 Nov 2016 06:07:04 +0000 (14:07 +0800)]
Merge branch 'feature/better_idle_tick_hook_mechanism' into 'master'
Add more scalable tick/idle hook handlers.
Like it says in the title. Also adds WAITI to the idle loop, which suspends the CPU until an interrupt comes in. Seems we did not have that yet... :x
See merge request !196
Wangjialin [Tue, 15 Nov 2016 05:47:51 +0000 (13:47 +0800)]
bugfix/uart_isr_switch_context: add switching context in uart ISR.
1. add switching context in uart ISR
2. remove duplicated #include in uart.c
3. modify example in uart.h(will later add examples to idf/examples)
Jeroen Domburg [Tue, 15 Nov 2016 04:36:15 +0000 (12:36 +0800)]
Merge remote-tracking branch 'origin/master' into feature/better_idle_tick_hook_mechanism
Ivan Grokhotkov [Tue, 15 Nov 2016 04:28:39 +0000 (12:28 +0800)]
Merge branch 'feature/change_default_hostname' into 'master'
tcpip_adapter: add set hostname interface
Add the function for change the network interface's hostname
See merge request !170
Jeroen Domburg [Tue, 15 Nov 2016 04:27:23 +0000 (12:27 +0800)]
Merge branch 'bugfix/workaround_gpio_pullupdown_bug' into 'master'
Work around the GPIO pullup/pulldown SoC bug
Some GPIO pins need to have their pullups/pulldowns set in the RTC peripheral instead of in the GPIO peripheral because of a silicon bug.
This merge:
- Declares PIN_PULLUP_EN and friends as deprecated; they can't really be changed to work around the issue because they get passed an iomux register instead of an io pin number
- Adds gpio_pullup_en and friends to the GPIO driver. These functions do have the workaround (as well as all the other functions in the gpio driver) and are meant to easily replace the PIN_PULLUP_EN routines
- Fixes some comments in the gpio headers
See merge request !200
Jeroen Domburg [Tue, 15 Nov 2016 04:10:02 +0000 (12:10 +0800)]
Add comments/headers according to merge request comments
Jeroen Domburg [Tue, 15 Nov 2016 03:57:01 +0000 (11:57 +0800)]
Merge remote-tracking branch 'origin/master' into bugfix/workaround_gpio_pullupdown_bug