NEW VERSION: 1.1.0

1. Add pwm support;
2. Add c++ support; Please update to the latest folder "ld".
3. Add rand in libminic;
4. Add new reset reason REASON_EXT_SYS_RST in rst_reason;
5. Update the complied script ‘gen_misc.sh(bat)’, use the new boot and remove the old one;
6. Update folder "tools", and support CRC check of bin files;  Please update to the latest folder "tools".
7. Optimize the process procedure of Wi-Fi event;
8. Fix bugs in printf when its runs out of memory;
9. Fix bugs in malloc when CACHE is disabled;
10.Fix exception and WDT reset bugs when CACHE is disabled;
11.Fix some Wi-Fi connection bugs;
12.Fix some Wi-Fi scan bugs;
13.Tune API "wifi_station_get_connect_status" for more accurate WiFi positioning;
14.Porting the optimization of non-OS SDK to RTOS SDK;
15.Fix other minor bugs.
This commit is contained in:
Espressif Systems
2015-08-21 18:10:07 +08:00
parent a6d4f57172
commit c24c2a557d
34 changed files with 231 additions and 947 deletions

View File

@ -1,22 +1,11 @@
@echo off
echo gen_misc.bat version 20150511
echo gen_misc.bat version 20150819
echo .
echo Please follow below steps(1-5) to generate specific bin(s):
echo STEP 1: choose boot version(0=boot_v1.1, 1=boot_v1.2+, 2=none)
set input=default
set /p input=enter(0/1/2, default 2):
if %input% equ 0 (
set boot=old
) else (
if %input% equ 1 (
set boot=new
) else (
set boot=none
)
)
echo STEP 1: use boot_v1.2+ by default
set boot=new
echo boot mode: %boot%
echo.
@ -90,7 +79,7 @@ if %input% equ 3 (
set spi_mode=QIO
)))
echo spi mode: %spi_mode%
echo spi mode: %spi_mode%
echo.
echo STEP 5: choose flash size and map

View File

@ -1,22 +1,11 @@
#!/bin/bash
echo "gen_misc.sh version 20150511"
echo "gen_misc.sh version 20150819"
echo ""
echo "Please follow below steps(1-5) to generate specific bin(s):"
echo "STEP 1: choose boot version(0=boot_v1.1, 1=boot_v1.2+, 2=none)"
echo "enter(0/1/2, default 2):"
read input
if [ -z "$input" ]; then
boot=none
elif [ $input == 0 ]; then
boot=old
elif [ $input == 1 ]; then
boot=new
else
boot=none
fi
echo "STEP 1: use boot_v1.2+ by default"
boot=new
echo "boot mode: $boot"
echo ""