Dong Heng
2e8d74ff1c
Merge branch 'bugfix/fix_memleak_when_sta_send_illegal_pkt_v3.0' into 'release/v3.0'
...
fix(lib): fix memleak when station send illegal packet(backport V3.0)
See merge request sdk/ESP8266_RTOS_SDK!1352
2020-04-21 11:31:53 +08:00
Zhang Jun Hao
38c98d7ba3
fix(lib): fix memleak when station send illegal packet
2020-04-01 17:46:43 +08:00
Dong Heng
1d60fbb5c7
Merge branch 'bugfix/gpio_set_pull_mode_error_v3.0' into 'release/v3.0'
...
bugfix(gpio_set_pull_mode_error):fix cant set gpio pull mode (backport v3.0)
See merge request sdk/ESP8266_RTOS_SDK!1289
2020-01-15 15:09:10 +08:00
espressif
dde4585b10
bugfix(gpio_set_pull_mode_error):fix cant set gpio pull mode
2020-01-10 15:48:54 +08:00
Dong Heng
4ee5effdce
Merge branch 'bugfix/support_GD25Q64_qio_enable_v3.0' into 'release/v3.0'
...
bugfix(flash): add support for GD25Q64 qio enable (backport v3.0)
See merge request sdk/ESP8266_RTOS_SDK!1244
2019-12-30 15:12:40 +08:00
chenjianqiang
0c4efaf941
bugfix(flash): add support for GD25Q64 qio enable
2019-12-26 11:07:16 +08:00
Dong Heng
b1f01f53a6
Merge branch 'bugfix/abort_log_error_v3.0' into 'release/v3.0'
...
newlib: fix abort function cause critical error (backport v3.0)
See merge request sdk/ESP8266_RTOS_SDK!1203
2019-11-29 15:29:15 +08:00
Dong Heng
3646993310
fix(newlib): fix abort function cause critical error
2019-11-29 15:00:34 +08:00
Dong Heng
8ac89069b5
Merge branch 'feature/update_phy_library_3.0' into 'release/v3.0'
...
phy: update phy library from 1057.9 to 1058.13 (backport v3.0)
See merge request sdk/ESP8266_RTOS_SDK!1190
2019-11-20 14:11:30 +08:00
Dong Heng
ebe250ba9e
feat(phy): update phy library from 1057.9 to 1058.13
...
1. optimize RF PLL calibration
2. fix packet lose when signal is weak
3. fix bug of disconnection in some case
2019-11-20 13:57:24 +08:00
Dong Heng
4372d12bc7
Merge branch 'feature/update_phy_library' into 'release/v3.0'
...
phy: update library phy to 1057_9
See merge request sdk/ESP8266_RTOS_SDK!1181
2019-11-18 14:18:03 +08:00
Dong Heng
9ed808f57e
feat(phy): update library phy to 1057_9
...
1.fix Wi-Fi connection breaks when signal is weak
2.fix header file dependence problems
2019-11-18 14:09:44 +08:00
Dong Heng
50cd751880
Merge branch 'feature/update_phy_v3.0' into 'release/v3.0'
...
feat(phy): update phy library (backport v3.0)
See merge request sdk/ESP8266_RTOS_SDK!1150
2019-10-23 10:53:58 +08:00
dongheng
e2c55343e1
feat(phy): update phy library
...
Fix clock error when init_data[112] = 1.
2019-10-23 10:36:51 +08:00
Dong Heng
d6aedac1e5
Merge branch 'bugfix/fix_phy_freq_shift_v3.0' into 'release/v3.0'
...
phy: fix RF frequency shift at some case (backport v3.0)
See merge request sdk/ESP8266_RTOS_SDK!1085
2019-09-11 18:39:16 +08:00
dongheng
7fd4418868
fix(phy): fix RF frequency shift at some case
2019-09-11 12:10:54 +08:00
Dong Heng
0a93c52215
Merge branch 'feature/add_get_default_mac_v3.0' into 'release/v3.0'
...
Add get default mac (backport v3.0)
See merge request sdk/ESP8266_RTOS_SDK!743
2019-01-29 19:33:20 +08:00
Dong Heng
eaaf67aae4
feat(esp8266): Add get default mac
2019-01-29 19:26:32 +08:00
Dong Heng
9fa93f7aa4
Merge branch 'bugfix/sync_bugfix_from_esp_idf_v3.0' into 'release/v3.0'
...
Sync bugfix from esp-idf
See merge request sdk/ESP8266_RTOS_SDK!729
2019-01-23 19:31:20 +08:00
Dong Heng
1ba3202c18
fix(nvs_flash): Fix recovery from power-off while page is being freed
...
Currently when page is being freed, items are individually moved from
FREEING page to ACTIVE page and erased. If power-off happens during the
process, the remaining entries are moved to ACTIVE page during recovery.
The problem with this approach is there may not be enough space on
ACTIVE page for all items if an item was partially written before
power-off and erased during recovery. This change moves all the items
from FREEING to ACTIVE page and then erased the FREEING page, If
power-off happens during the process, then ACTIVE page is erased and the
process is restarted.
esp-idf commit ID: 7ae1df1c
2019-01-23 19:21:48 +08:00
Dong Heng
ea577c8ae0
fix(nvs_flash): don’t expect items with bad CRC to be in cache
...
When erasing a variable length item with an incorrect CRC32, the span
value of the item can not be trusted, so the item will be erased with
span = 1. Subsequent entries represent the data of the variable
length item, and these will be treated as separate items. For each
entry CRC32 is checked, the check most likely fails (because the
entry contains arbitrary data, and not a proper NVS item), and the
entry is erased. Erase function assumed that every item should be
present in cache, but it is not the case for the entries which are
just parts of item’s payload. This change allows for the item to be
not found in the hashlist, if the CRC32 check fails.
esp-idf commit ID: 2c3644a0
2019-01-23 19:21:42 +08:00
Dong Heng
1abde6ed58
fis(nvs_flash): Fix recovery after power-off during erase operation
...
Current code for recovery after power-off do not clean-up partially
erased items for FULL pages. If the erasure was part of modification
operation, this gets luckily cleaned-up because of duplicate detection
logic. For erase-only operation, the problem still exists. This patch
adds the recovery for FULL pages also.
esp-idf commit ID: 9a3c4b71
2019-01-23 19:21:34 +08:00
Dong Heng
758668a392
fix(nv_flash): Fix page selection algo to consider free entry counts as well
...
Current page selection algorithm selects a page for compaction based on just erased counts
and gives up when it does not find any page with erased count greater than 0. This is
problematic since the current allocation procedure skips the active page if there is not
enough room for the item in that page leaving free chunks on the pages. This change modifies
the algorithm to consider both erased as well as free counts on the candidate pages.
esp-idf commit ID: 7e79471e
2019-01-23 19:21:22 +08:00
Dong Heng
af07287227
Merge branch 'bugfix/fix_cannot_connect_with_some_special_AP_with_11b_only_mode_v3.0' into 'release/v3.0'
...
fix(lib): fix can not connect with some special AP with 11b only mode
See merge request sdk/ESP8266_RTOS_SDK!720
2019-01-16 10:26:22 +08:00
Dong Heng
68a1cd9f98
fix(lib): fix can not connect with some special AP with 11b only mode
2019-01-16 10:19:48 +08:00
Wu Jian Gang
f561b36ac6
Merge branch 'feature/add_phy_reg_default' into 'release/v3.0'
...
feat: Add phy reg default when boot
See merge request sdk/ESP8266_RTOS_SDK!690
v3.0.1
2018-12-29 14:36:30 +08:00
Wu Jian Gang
09a5a0f2d7
feat: Add phy reg default when boot
2018-12-29 14:28:59 +08:00
Dong Heng
597bc9703e
Merge branch 'feature/use_fake_buf_to_disable_rx_ampdu_pkt_v3.0' into 'release/v3.0'
...
feat(lib): use fake buffer to disable rx ampdu packet
See merge request sdk/ESP8266_RTOS_SDK!662
2018-12-18 19:40:09 +08:00
Zhang Jun Hao
2c5e8c2b08
feat(lib): use fake buffer to disable rx ampdu packet
2018-12-18 16:24:05 +08:00
Dong Heng
d2d1fcef1d
Merge branch 'bugfix/fix_v3.0_ci_compiling_error' into 'release/v3.0'
...
Fix CI compiling error
See merge request sdk/ESP8266_RTOS_SDK!656
2018-12-12 15:54:04 +08:00
Dong Heng
1b2bd8c331
fix(ci): Fix CI compiling error
2018-12-12 15:38:16 +08:00
Dong Heng
ebabc44b58
Merge branch 'bugfix/fix_CCMP_encryption_incompatible_with_some_AP_v3.0' into 'release/v3.0'
...
fix(lib): fix CCMP encryption incompatible with some AP
See merge request sdk/ESP8266_RTOS_SDK!644
2018-12-05 10:16:00 +08:00
Zhang Jun Hao
cbffd2273d
fix(lib): fix CCMP encryption incompatible with some AP
2018-12-04 20:14:11 +08:00
Dong Heng
6a15838d79
Merge branch 'feature/update_smartconfig_to_v2.8.0_IDF_v3.0' into 'release/v3.0'
...
feat(lib): update smartconfig to V2.8.0
See merge request sdk/ESP8266_RTOS_SDK!613
2018-11-09 14:17:38 +08:00
Zhang Jun Hao
6724994bc1
feat(lib): update smartconfig to V2.8.0
2018-11-07 15:53:09 +08:00
Dong Heng
12595ea303
Merge branch 'bugfix/fix_esp_start_return_v3.0' into 'release/v3.0'
...
Fix esp_restart and it must not return
See merge request sdk/ESP8266_RTOS_SDK!605
2018-11-05 20:51:03 +08:00
Dong Heng
4dad268895
fix(esp8266): Fix esp_restart and it must not return
2018-11-05 20:38:02 +08:00
Dong Heng
f81c89a04d
Merge branch 'bugfix/fix_disable_udp_compiling_error_v3.0' into 'release/v3.0'
...
Fix compiling error when disable UDP sync
See merge request sdk/ESP8266_RTOS_SDK!500
2018-09-20 17:22:38 +08:00
Dong Heng
bf87f32502
fix(lwip): Fix compiling error when disable UDP sync
2018-09-18 16:02:49 +08:00
Dong Heng
39e5551cbd
Merge branch 'feature/add_configurate_console_uart_swap_io_v3.0' into 'release/v3.0'
...
Add configuration for UART swap I/O pins
See merge request sdk/ESP8266_RTOS_SDK!464
v3.0
2018-09-07 14:10:09 +08:00
Dong Heng
5557ecf8ee
Merge branch 'feature/add_configurate_console_uart_baudrate_v3.0' into 'release/v3.0'
...
Add configuration for UART baudrate
See merge request sdk/ESP8266_RTOS_SDK!463
2018-09-07 14:09:54 +08:00
Dong Heng
f2025abb7b
feat(esp8266): Add configuration for UART swap I/O pins
2018-09-07 14:02:20 +08:00
Dong Heng
ea049753cd
feat(esp8266): Add configuration for UART baudrate
2018-09-07 13:38:35 +08:00
Dong Heng
7679495cca
Merge branch 'feature/add_configurate_console_uart_v3.0' into 'release/v3.0'
...
Add configration for output console UART
See merge request sdk/ESP8266_RTOS_SDK!462
2018-09-07 13:31:38 +08:00
Dong Heng
e4808fe0f4
feat(bootloader): Add configration for output console UART
2018-09-07 13:28:46 +08:00
Dong Heng
44a2b2da63
Merge branch 'docs/remove_v2.0_from_readme_v3.0' into 'release/v3.0'
...
Remove description of v2.0.0
See merge request sdk/ESP8266_RTOS_SDK!461
2018-09-07 13:27:45 +08:00
Dong Heng
0bb3bd8cdb
docs(readme): Remove description of v2.0.0
2018-09-07 11:26:46 +08:00
Dong Heng
318571d0f8
Merge branch 'bugfix/disable_conn_ap_task_v3.0' into 'release/v3.0'
...
Disable "con_ap" task
See merge request sdk/ESP8266_RTOS_SDK!459
2018-09-06 10:37:09 +08:00
Dong Heng
9f5da35f55
fix(esp8266): Disable "con_ap" task
2018-09-06 10:25:35 +08:00
Dong Heng
a6db5e18ba
Merge branch 'buffix/fix_wap_free_data_error_v3.0' into 'release/v3.0'
...
Fix WPA free data error
See merge request sdk/ESP8266_RTOS_SDK!457
2018-09-06 09:59:47 +08:00