Fix SPIFFS_START address // Issue #382

This commit is contained in:
Ivan Kravets
2015-12-28 18:40:54 +02:00
parent 5abb21c3f9
commit 3121ca5669
3 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ Uploading files to file system SPIFFS
Please make sure to read `ESP8266 Flash layout <https://github.com/esp8266/Arduino/blob/master/doc/filesystem.md#flash-layout>`_
information first.
1. Put files to :ref:`projectconf_pio_data_dir`
1. Create :ref:`projectconf_pio_data_dir` and put files here
2. Run target ``uploadfs`` via :option:`platformio run --target` command.
By default, will be used default LD Script for the board where is specified

View File

@ -14,7 +14,7 @@
import sys
VERSION = (2, 7, "0.dev3")
VERSION = (2, 7, "0.dev4")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -116,7 +116,7 @@ env.Replace(
],
UPLOADERFSFLAGS=[
"$UPLOADERFLAGS",
"-ca", "${int(SPIFFS_START, 16)}"
"-ca", "${int(SPIFFS_START, 16) & 0xFFFFFF}"
],
UPLOADEROTAFLAGS=[
"--debug",