6f1c1c0707
Merge branch 'bugfix/fix_light_sleep_time_error_when_wakup' into 'master'
...
esp8266: fix light sleep time error when waking up
See merge request sdk/ESP8266_RTOS_SDK!1259
2020-01-07 14:06:34 +08:00
f7389b7ca6
fix(esp8266): fix light sleep time error when waking up
2020-01-07 11:54:13 +08:00
d67de39024
fix(esp8266): fix Wi-Fi initialization data error when compiling cpp
2020-01-06 17:40:39 +08:00
6873eb1d27
feat(esp8266): fix CPU light sleep process
2019-12-17 11:20:07 +08:00
22029d989a
Merge branch 'bugfix/fix_panic_reboot_reenter' into 'master'
...
esp8266: fix panic reenter when reboot
See merge request sdk/ESP8266_RTOS_SDK!1209
2019-12-02 18:59:31 +08:00
8c7305f473
fix(esp8266): fix panic reenter when reboot
2019-12-02 14:24:37 +08:00
a9c34d2c77
fix(esp8266): fix backtrace does not trace ROM code
2019-12-02 10:19:52 +08:00
95ed4d1e50
feat(wpa2): add wpa2_enterprise to esp8266
2019-11-26 16:09:38 +08:00
0cdff9dbf1
fix(esp8266): fix that WDEV time is larger than normal
2019-11-25 17:05:14 +08:00
0e39eb1038
fix(esp8266): fix CPU ticks per milli second at 160MHz
...
Closes https://github.com/espressif/ESP8266_RTOS_SDK/issues/762
2019-11-22 11:17:54 +08:00
c0dc2e94fd
feat(esp8266): add API to be compatible with esp-idf
2019-11-19 11:39:53 +08:00
73bf28b991
Merge branch 'feature/hspi_test' into 'master'
...
feat(spi): fix some bugs and restructure the spi driver and the demo
See merge request sdk/ESP8266_RTOS_SDK!1113
2019-11-13 10:00:35 +08:00
330d6792c3
feat(spi): fix some bugs and restructure the spi driver and the demo
2019-11-12 17:42:32 +08:00
7672988cab
fix(lib): fix crash issues while recv ampdu pkt
2019-11-12 16:20:28 +08:00
668c3bbb2c
fix(esp8266): remove 40MHz STAL option
2019-11-11 14:11:53 +08:00
046ba744fa
feature(ledc): Redefine duty
2019-11-05 14:58:27 +08:00
2fa4782599
feature(ledc):add ledc about esp8266
2019-11-05 14:58:27 +08:00
350971d8bb
feature(ir_tx): use wdev timer
2019-10-28 15:54:04 +08:00
a9c23b2c69
fix(esp8266): Added #pragma once for esp_sleep.h
...
Merges https://github.com/espressif/ESP8266_RTOS_SDK/pull/732
2019-10-14 17:18:26 +08:00
94d7d52248
Merge branch 'feature/update_mbedtls_from_esp_idf' into 'master'
...
mbedtls: bring mbedtls and openssl based on mbedtls from esp-idf
See merge request sdk/ESP8266_RTOS_SDK!1106
2019-10-12 10:16:25 +08:00
eb58df9506
feat(esp8266): add function to enable GPIO wakeup from light sleep and disable wakeup source
2019-10-10 18:12:33 +08:00
5f2b5eafcf
feat(mbedtls): modify code to support ESP8266
...
It is that maybe less modification working on the components is better, so I just modified the platform
code of AES, SHA and so on.
ESP8266 has no real hardware AES, SHA or bignum peripheral, but some method can speed up the process of part
of upper algorithm, so I also added the platform code of AES, SHA, bignum, ARC, MD5.
ESP8266 has no platform of bignum, so users should not enable the bignum hardware at "menuconfig".
2019-10-10 13:39:08 +08:00
d6ec931ec7
Merge branch 'feature/set_cpu_sleep_mode' into 'master'
...
sleep: add function set CPU sleep mode
See merge request sdk/ESP8266_RTOS_SDK!1116
2019-09-30 14:45:31 +08:00
f2cb7b00ba
feat(sleep): add function set CPU sleep mode
2019-09-30 13:59:08 +08:00
c7ac512e99
feat(phy): update phy library to 1151.0
...
1. rename function from "rtc_init_2" to be "rtc_init_clk"
2. reduce time cost of openning RF
3. locate "phy_close_rf" and "i2c" from flash to IRAM
2019-09-29 18:14:51 +08:00
3cd3d751c9
Merge branch 'feature/add_wps_to_IDF' into 'master'
...
feat(wps): add wps to idf
See merge request sdk/ESP8266_RTOS_SDK!1111
2019-09-25 14:32:14 +08:00
4d4e1c0564
fix(esp8266): fix system and wifi sleep/wake process error
2019-09-25 14:13:47 +08:00
62cc5052fe
feat(wps): optimization wps code
2019-09-23 20:29:41 +08:00
0a7d44c858
feat(wps): sync wps_internal code to esp8266
...
feat(wps): modify CMakeLists.txt
2019-09-23 20:29:41 +08:00
8c52206736
feat(wps): sync esp32 wps code to esp8266
2019-09-23 20:29:41 +08:00
d0f58daec1
feat(esp8266): add system version
...
Bootloader can get the version of application for specific section,
and then check if some features are supported.
Developers can use the macro "ESP_IDF_VERSION" to limite some function like following:
include "esp_idf_version.h"
if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(3, 4, 0) && ESP_IDF_VERSION < ESP_IDF_VERSION_VAL(4, 0, 0) // 3.4 <= ver < 4.0
do_xxx_process();
endif
2019-09-23 20:06:51 +08:00
e7cfc98413
Merge branch 'bugfix/fix_uart_output_error_when_startup' into 'master'
...
esp8266: fix UART output error when start up
See merge request sdk/ESP8266_RTOS_SDK!1094
2019-09-17 10:37:30 +08:00
96e5df4ebd
fix(esp8266): fix UART output error when start up
...
Add UART system API to flush UART and wait until all characters are sent.
2019-09-16 15:21:42 +08:00
4bc5a555a0
feat(esp8266): modify notes of wifi_promiscuous_pkt_t structure
2019-09-12 15:49:40 +08:00
95223eff95
Merge branch 'feature/ir_tx_rx' into 'master'
...
feature(ir): add ir rx tx example
See merge request sdk/ESP8266_RTOS_SDK!1065
2019-09-09 10:38:30 +08:00
6995f4a586
Merge branch 'feature/refactor_wifi_power_save' into 'master'
...
feat(lib): refactor wifi power save
See merge request sdk/ESP8266_RTOS_SDK!1075
2019-09-09 10:24:26 +08:00
0008fec35e
Merge branch 'feature/uart_driver_install' into 'master'
...
feature(uart_driver_install): An invalid parameter was added to theuart_driver_install as an adaptation to some modules
See merge request sdk/ESP8266_RTOS_SDK!1074
2019-09-06 16:00:19 +08:00
9fd4951863
feat(wifi): refactor wifi power save
2019-09-06 15:20:46 +08:00
428f2f3b1a
feature(ir): add ir tx rx driver
2019-09-04 15:46:49 +08:00
47a13e19cc
feature(uart_driver_install): To fit some modules, add invalid parameters in uart_driver_install
2019-09-04 14:47:11 +08:00
aa965627d1
feat(esp8266): add new power management method
2019-08-30 20:58:32 +08:00
bb6fc942ee
Merge branch 'feature/refactor_and_add_more_wifi_feature_for_11n_certificate' into 'master'
...
feat(wifi): refactor and add more wifi feature for 11n certificate
See merge request sdk/ESP8266_RTOS_SDK!1044
2019-08-30 20:13:58 +08:00
53813599e9
feat(wifi): refactor and add more wifi feature for 11n certificate
2019-08-30 14:19:16 +08:00
e1d70c9519
Merge branch 'feature/refactor_panic_backtrace' into 'master'
...
esp8266: refactor ESP8266(xtensa lx106) panic backtrace function
See merge request sdk/ESP8266_RTOS_SDK!1067
2019-08-29 10:10:38 +08:00
767d995466
feat(esp8266): refactor ESP8266(xtensa lx106) panic backtrace function
2019-08-26 16:55:20 +08:00
dbded69dd5
Merge branch 'feature/i2c_clk_stretch' into 'master'
...
feature(i2c): add i2c clock stretch
See merge request sdk/ESP8266_RTOS_SDK!916
2019-08-26 14:08:25 +08:00
b061230056
feat(esp8266): refactor CCOMPARE timer and system time by microseconds
...
old: CCOMPARE timer triggers when CCOUNT increase to equal to CCOMPARE, then ISR will increase integer of "_xt_tick_divisor"
to CCOMPARE and wait for next interrupt triggering
now: CCOMPARE timer triggers when CCOUNT increase to equal to CCOMPARE, then ISR will reset CCOUNT to be 0 and reset CCOMPARE
to be integer of "_xt_tick_divisor", then wait for next interrupt triggering
Using the new method, we may get the CCOUNT value without considing if it has overflowed.
System running microseconds = g_os_ticks * microseconds per tick + CCOUNT.
2019-08-19 14:03:20 +08:00
c665a71370
fix(esp8266): esp8266 flash mapping to CPU bus size only supports 1MB now
...
We may add support to run app which size is larger than 1MB later.
2019-08-12 15:45:26 +08:00
6ada81237e
Merge branch 'feature/support_make_size_family_cmd' into 'master'
...
esp8266: supports "make size" and its family function
See merge request sdk/ESP8266_RTOS_SDK!1033
2019-08-08 09:51:47 +08:00
3aa6377476
Merge branch 'feature/add_md5_algorithm_in_util' into 'master'
...
feat(util): Add md5 algorithm to util
See merge request sdk/ESP8266_RTOS_SDK!1024
2019-08-07 12:10:00 +08:00