Jiang Jiang Jian
8eff4e7a47
Merge branch 'optimization/AP_STAIPASSIGNED_passes_IP_send_through_event_data_for_4.1' into 'release/v4.1'
...
esp-event:AP_STAIPASSIGNED now passes the IP through 'event_data'(backport 4.1)
See merge request espressif/esp-idf!11240
2020-11-17 17:45:56 +08:00
Krzysztof Budzynski
4f74fd9e95
Merge branch 'bugfix/sleep_comments_v4.1' into 'release/v4.1'
...
doc: Specify that sleep wakeup source restrictions apply to all current ESP32 revisions (v4.1)
See merge request espressif/esp-idf!8567
2020-11-17 08:59:22 +08:00
Angus Gratton
09e669dba2
Merge branch 'bugfix/secure_boot_v2_key_gen_py3_v4.1' into 'release/v4.1'
...
esptool: Update submodule fixing Py3 keygen in Secure boot v2
See merge request espressif/esp-idf!11230
2020-11-17 07:38:43 +08:00
israel
467bf2f53f
AP_STAIPASSIGNED now passes the IP through 'event_data'
...
Signed-off-by: xueyunfei <xueyunfei@espressif.com>
2020-11-16 17:32:14 +08:00
Angus Gratton
5bb72ea5cc
Merge branch 'bugfix/cmake_example_sdkconfig_path_v4.1' into 'release/v4.1'
...
cmake/example: Move idf_as_lib sdkconfig path to project, document configuring project (v4.1)
See merge request espressif/esp-idf!10860
2020-11-16 12:14:00 +08:00
Angus Gratton
573f5de99a
Merge branch 'bugfix/window_spill_a0_corruption_v4.1' into 'release/v4.1'
...
freertos: don't clobber a4 while spilling register windows (backport v4.1)
See merge request espressif/esp-idf!10306
2020-11-13 16:27:45 +08:00
Supreet Deshpande
5b1a3b801f
esptool: Update submodule fixing Py3 keygen in Secure boot v2
2020-11-13 12:10:19 +05:30
Mahavir Jain
00fb496eda
Merge branch 'fix/esp_local_ctrl_update_expired_cert_v4.1' into 'release/v4.1'
...
esp_local_ctrl: Updated the expired cacert.pem (v4.1)
See merge request espressif/esp-idf!11207
2020-11-12 23:20:37 +08:00
David Čermák
ad7f8ed0ff
Merge branch 'feature/pppos_client_test_v4.1' into 'release/v4.1'
...
PPPoS client fixes for UART: REF_TICK, driver install after config (v4.1)
See merge request espressif/esp-idf!11197
2020-11-12 20:31:45 +08:00
Jiang Jiang Jian
5468184381
Merge branch 'bugfix/update_toolchain_5.2.0_psram_final_v4.1' into 'release/v4.1'
...
esp_wifi: Update WiFi toolchain to 1.22.0-97-gc752ad5 (backport v4.1)
See merge request espressif/esp-idf!11101
2020-11-12 14:26:21 +08:00
Axel Lin
21dc6d1bf1
esp_modem: Ensure uart_param_config and uart pins are set before uart_driver_install
...
Fixes Guru Meditation Error: Core 0 panic'ed (LoadProhibited) when config with
CONFIG_PM_ENABLE=y && CONFIG_PM_DFS_INIT_AUTO=y.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Merges https://github.com/espressif/esp-idf/pull/4904
2020-11-12 07:15:39 +01:00
David Cermak
e4575b20a1
esp_modem: pppos_client modem to use uart with REF_TICK
...
pppos_client example used the UART default clock configuration which might
cause issues if power management enabled. Settings updated to UART_SCLK_REF_TICK
Also need to explicitly disable RX interrupts in UART pattern detection
mode.
Closes https://github.com/espressif/esp-idf/issues/4801
2020-11-12 07:13:13 +01:00
Jiang Jiang Jian
86dd11f176
Merge branch 'bugfix/esp_netif_ppp_setdefault_fix_v4.1' into 'release/v4.1'
...
ESP-NETIF: Set default interface for ppp netif must be called from lw_ip context (v4.1)
See merge request espressif/esp-idf!11196
2020-11-12 14:05:50 +08:00
Jiang Jiang Jian
29a995dd78
Merge branch 'bugfix/pppos_ignored_modem_start_return_v4.1' into 'release/v4.1'
...
pppos client: modem netif fix ignoring potential modem-start error (v4.1)
See merge request espressif/esp-idf!11199
2020-11-12 14:03:54 +08:00
Jiang Jiang Jian
d397767f5d
Merge branch 'bugfix/fix_esp_modem_mode_switch_timeout_v4.1' into 'release/v4.1'
...
fix esp_modem switch mode timeout (v4.1)
See merge request espressif/esp-idf!11198
2020-11-12 14:03:15 +08:00
Aditya Patwardhan
2357d05427
esp_local_ctrl: Updated the expired cacert.pem
2020-11-12 10:16:54 +05:30
Ivan Grokhotkov
b6b1cf216b
Revert "CXX: removed exception windowspill test"
...
This reverts commit f3e180de72
.
2020-11-11 14:43:15 +00:00
Ivan Grokhotkov
cf5ef7f0e1
freertos: don't clobber a4 while spilling register windows
...
Commit 891eb3b0
was fixing an issue with PS and EPC1 not being
preserved after the window spill procedure. It did so by saving PS in
a2 and EPC1 in a4. However the a4 register may be a live register of
another window in the call stack, and if it is overwritten and then
spilled to the stack, then the corresponding register value will end
up being corrupted. In practice the problem would show up as an
IllegalInstruction exception, when trying to return from a function
when a0 value was 0x40020.
Fix by using a0 register instead of a4 as scratch. Also fix a comment
about xthal_save_extra_nw, as this function in fact doesn't clobber
a4 or a5 because XCHAL_NCP_NUM_ATMPS is defined as 1.
Closes https://github.com/espressif/esp-idf/issues/5758
2020-11-11 14:43:15 +00:00
David Cermak
07c41378fb
pppos client: modem netif fix ignoring potential modem-start error
...
esp-modem netif glue layer implements esp-netif attach callback to setup corresponding driver functions and start the modem. The error code of esp_modem_start_ppp() was ignored and ESP_OK returned in all cases. Fixed by passing esp_modem_start_ppp()'s error code to post_attach callback.
Closes https://github.com/espressif/esp-idf/issues/5430
2020-11-11 14:25:05 +01:00
morris
e8834b66c5
fix esp_modem switch mode timeout
...
Closes https://github.com/espressif/esp-idf/issues/3506
Closes https://github.com/espressif/esp-idf/issues/4324
2020-11-11 14:19:23 +01:00
David Cermak
4c1ad38f79
esp-netif-ppp: support for setting ppp netif up and down
...
calling esp_netif_up() and esp_netif_down() was not supported if the
underlying netif wos of ppp type. Updated the code to enable setting
these interfaces up/down and registered actions in moden_netif glue for
connection/disconnection events to set the netif up/down.
2020-11-11 13:29:13 +01:00
David Cermak
b9d1afdb86
esp-netif: set default interface for ppp netif must be called from lwip context
...
On update of any interface (set up/down) a routing preference is updated calling esp_netif_update_default_netif() that is called from
lwip context. But if the related netif was ppp type, the set_default api used user-mode, thus causing a dead lock.
Closes https://github.com/espressif/esp-idf/issues/4746
2020-11-11 13:29:13 +01:00
Angus Gratton
f1d98671d2
doc: Specify that sleep wakeup source restrictions apply to all current ESP32 revisions
...
Closes https://github.com/espressif/esp-idf/issues/4681
Discussion https://esp32.com/viewtopic.php?f=13&t=15145
2020-11-11 17:34:42 +11:00
xiehang
2178f319c4
esp_wifi: Update WiFi toolchain to 1.22.0-97-gc752ad5
2020-11-10 20:15:13 +08:00
He Yin Ling
a59a8edfc0
Merge branch 'bugfix/example_test_import_error_4.1' into 'release/v4.1'
...
bugfix: import error in example tests (4.1)
See merge request espressif/esp-idf!11047
2020-11-09 19:19:37 +08:00
Jiang Jiang Jian
538b04bf14
Merge branch 'bugfix/fix_16mbit_psram_id_read_error_v4.1' into 'release/v4.1'
...
psram: fix 16mbit psram id read error (backport v4.1)
See merge request espressif/esp-idf!9426
2020-11-05 14:10:39 +08:00
Michael (XIAO Xufeng)
534b8a7940
spiram: fix the read id failure
...
The issue is caused by:
1. The disable_qio_mode inside read_id may have side effects.
2. read_id twice may have side effects.
Fix this issue by moving disable_qio_mode out of read_id and only do it
once before read_id. And retry read_id only when the first one is
failed.
Issue introduced in 3ecbb59c15
.
2020-11-05 04:13:39 +00:00
chenjianqiang
cbf4d51ddb
psram: fix 16mbit psram id read error
2020-11-05 04:13:39 +00:00
Jiang Jiang Jian
91e435d662
Merge branch 'feature/lwip_tcp_isn_hook_v4.1' into 'release/v4.1'
...
lw-ip: enable TCP ISN hook (v4.1)
See merge request espressif/esp-idf!11063
2020-11-05 12:10:17 +08:00
Michael (XIAO Xufeng)
ab1f6299ff
Merge branch 'bugfix/fix_uart_module_enable_issue_v4.1' into 'release/v4.1'
...
Bugfix (uart): fix uart module reset issue (release/v4.1)
See merge request espressif/esp-idf!8592
2020-11-05 10:32:28 +08:00
Michael (XIAO Xufeng)
7cbf4c4330
Merge branch 'bugfix/fix_i2s_reset_issue_v4.1' into 'release/v4.1'
...
driver(I2S): Fix I2S reset issue for release/v4.1
See merge request espressif/esp-idf!9584
2020-11-05 09:05:50 +08:00
Michael (XIAO Xufeng)
32c3db089b
Merge branch 'bugfix/fix_i2c_slave_rxfifo_full_interrupt_bug_v.4.1' into 'release/v4.1'
...
Bugfix (I2C): fix I2C slave rxfifo_full interrupt enabled incorrectly bug (release/v4.1)
See merge request espressif/esp-idf!7679
2020-11-05 02:27:03 +08:00
Jiang Jiang Jian
c8289caa23
Merge branch 'mesh/bugfix_1023_backport_v4.1' into 'release/v4.1'
...
esp_wifi_mesh: update wifi mesh libs(Backport v4.1)
See merge request espressif/esp-idf!11080
2020-11-04 22:49:47 +08:00
Michael (XIAO Xufeng)
73381b5582
Merge branch 'bugfix/pcnt_interrupt_clear_v4.1' into 'release/v4.1'
...
pcnt: fix bug in clear interrupt status (v4.1)
See merge request espressif/esp-idf!10693
2020-11-04 19:43:01 +08:00
Michael (XIAO Xufeng)
5ca047ac9b
Merge branch 'bugfix/rmt_memory_write_multiple_blocks_v4.1' into 'release/v4.1'
...
rmt: fix TX data truncated issue (v4.1)
See merge request espressif/esp-idf!10904
2020-11-04 18:44:51 +08:00
houwenxiang
eda943b7c5
driver(uart): fix uart module reset issue (release/v4.1)
...
On ESP32, due to fifo reset issue, UART2 will work incorrectly if reset the fifo of UART1(TX fifo and RX fifo). The software can workaround the RX fifo reset issue,
while the TX fifo reset issue can not. When UART2 is used and UART1 is used as the log output port, a software reset can reproduce this issue. So we should reset the UART memory
before the software reset to solve this problem.
2020-11-04 18:41:43 +08:00
houwenxiang
e76038ed76
driver(I2C): fix I2C slave rxfifo_full interrupt enabled incorrectly bug (release/v4.1)
2020-11-04 08:25:59 +00:00
houwenxiang
9f6f510ce2
driver(I2S): Fix I2S reset issue for release/v4.1
...
`i2s_start` reseting I2S in incorrect order causeing the word-order error.
2020-11-04 08:18:20 +00:00
Jiang Jiang Jian
f68b6e6c60
Merge branch 'bugfix/lwip_netdb_cpp_guards_v4.1' into 'release/v4.1'
...
lw-IP: Changed to C linkage in netdb.h for fixing bug when using mixed C/C++ code (v4.1)
See merge request espressif/esp-idf!11090
2020-11-04 15:18:14 +08:00
Jiang Jiang Jian
718efee074
Merge branch 'cherry-pick-65bee988' into 'release/v4.1'
...
esp_wifi: Add Failures Reason code in all WPS failure send event(backport v4.1)
See merge request espressif/esp-idf!11087
2020-11-04 15:07:55 +08:00
Ivan Grokhotkov
db2eec2096
Merge branch 'bugfix/ci_clone_https_v4.1' into 'release/v4.1'
...
ci: use HTTPS for cloning in IT jobs (v4.1)
See merge request espressif/esp-idf!11096
2020-11-03 21:45:47 +08:00
Ivan Grokhotkov
e552ea0d9c
ci: use HTTPS for cloning in IT jobs
2020-11-03 19:30:30 +08:00
mathiasbredholt
10526ca207
lwip: Changed to C linkage for fixing bug when using mixed C/C++ code
...
Merges https://github.com/espressif/esp-idf/pull/5900
2020-11-03 08:42:02 +01:00
Jiang Jiang Jian
55bb405583
Merge branch 'bugfix/wps_fail_reason_code' into 'master'
...
esp_wifi: Add Failures Reason code in all WPS failure send event
Closes WIFI-2947
See merge request espressif/esp-idf!10924
(cherry picked from commit 65bee98861
)
474c38a5
esp_wifi: Add WPS Reason code in all failures
2020-11-03 13:48:21 +08:00
Mahavir Jain
246e97c721
esp_netif: initialize TCP ISN hook if enabled in configuration
2020-11-02 14:27:33 +05:30
Mahavir Jain
3689b94882
lwip: provide configuration option to enable TCP ISN hook
2020-11-02 14:27:33 +05:30
Mahavir Jain
591606ba59
tcp_isn: use ROM APIs for md5 calculations
2020-11-02 14:27:26 +05:30
Mahavir Jain
2b351a936c
lwip: add custom TCP ISN hook implementation
...
Source:
https://git.savannah.nongnu.org/cgit/lwip/lwip-contrib.git/
2020-11-02 14:26:19 +05:30
Island
572ccd503f
Merge branch 'bugfix/fix_node_test_func_not_set_role_v4.1' into 'release/v4.1'
...
ble_mesh: test: Fix node test function not update role flag (v4.1)
See merge request espressif/esp-idf!11041
2020-10-30 21:05:40 +08:00
Angus Gratton
176f146678
Merge branch 'bugfix/err_to_name_paths_windows_v4.1' into 'release/v4.1'
...
tools: fix path handling errors in gen_esp_err_to_name.py for Windows (v4.1)
See merge request espressif/esp-idf!10896
2020-10-30 15:12:43 +08:00