Upgrade to SDK version 1.5.1 from Espressif
This commit is contained in:
parent
2ff1324d2e
commit
1d9336fb99
6
Makefile
6
Makefile
|
@ -3,7 +3,7 @@
|
|||
.NOTPARALLEL:
|
||||
|
||||
# SDK version NodeMCU is locked to
|
||||
SDK_VER:=1.5.0
|
||||
SDK_VER:=1.5.1
|
||||
# Ensure we search "our" SDK before the tool-chain's SDK (if any)
|
||||
TOP_DIR:=$(abspath $(dir $(lastword $(MAKEFILE_LIST))))
|
||||
SDK_DIR:=$(TOP_DIR)/sdk/esp_iot_sdk_v$(SDK_VER)
|
||||
|
@ -171,9 +171,9 @@ $(BINODIR)/%.bin: $(IMAGEODIR)/%.out
|
|||
all: sdk_extracted .subdirs $(OBJS) $(OLIBS) $(OIMAGES) $(OBINS) $(SPECIAL_MKTARGETS)
|
||||
|
||||
.PHONY: sdk_extracted
|
||||
sdk_extracted: $(TOP_DIR)/sdk/.extracted
|
||||
sdk_extracted: $(TOP_DIR)/sdk/.extracted-$(SDK_VER)
|
||||
|
||||
$(TOP_DIR)/sdk/.extracted:
|
||||
$(TOP_DIR)/sdk/.extracted-$(SDK_VER):
|
||||
mkdir -p "$(dir $@)"
|
||||
(cd "$(dir $@)" && unzip $(TOP_DIR)/cache/esp_iot_sdk_v$(SDK_VER)*.zip esp_iot_sdk_v$(SDK_VER)/lib/* esp_iot_sdk_v$(SDK_VER)/ld/eagle.rom.addr.v6.ld esp_iot_sdk_v$(SDK_VER)/include/* )
|
||||
rm -f $(SDK_DIR)/lib/liblwip.a
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
# **NodeMCU 1.5.0** #
|
||||
# **NodeMCU 1.5.1** #
|
||||
|
||||
[![Join the chat at https://gitter.im/nodemcu/nodemcu-firmware](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/nodemcu/nodemcu-firmware?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
[![Build Status](https://travis-ci.org/nodemcu/nodemcu-firmware.svg)](https://travis-ci.org/nodemcu/nodemcu-firmware)
|
||||
|
||||
###A lua based firmware for wifi-soc esp8266
|
||||
- Build on [ESP8266 NONOS SDK 1.5.0](http://bbs.espressif.com/viewtopic.php?f=46&t=1442)
|
||||
- Build on [ESP8266 NONOS SDK 1.5.1](http://bbs.espressif.com/viewtopic.php?f=46&p=5315)
|
||||
- Lua core based on [eLua project](http://www.eluaproject.net/)
|
||||
- cjson based on [lua-cjson](https://github.com/mpx/lua-cjson)
|
||||
- File system based on [spiffs](https://github.com/pellepl/spiffs)
|
||||
|
@ -298,7 +298,7 @@ Comment-out the #define statement for unused modules. Example:
|
|||
Identify your firmware builds by editing `app/include/user_version.h`
|
||||
|
||||
```c
|
||||
#define NODE_VERSION "NodeMCU 1.5.0+myname"
|
||||
#define NODE_VERSION "NodeMCU 1.5.1+myname"
|
||||
#ifndef BUILD_DATE
|
||||
#define BUILD_DATE "YYYYMMDD"
|
||||
#endif
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#define NODE_VERSION_REVISION 0U
|
||||
#define NODE_VERSION_INTERNAL 0U
|
||||
|
||||
#define NODE_VERSION "NodeMCU 1.5.0"
|
||||
#define NODE_VERSION "NodeMCU 1.5.1"
|
||||
#ifndef BUILD_DATE
|
||||
#define BUILD_DATE "unspecified"
|
||||
#endif
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue