forked from platformio/platformio-core
Fix SPIFFS_START address // Issue #382
This commit is contained in:
@ -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>`_
|
Please make sure to read `ESP8266 Flash layout <https://github.com/esp8266/Arduino/blob/master/doc/filesystem.md#flash-layout>`_
|
||||||
information first.
|
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.
|
2. Run target ``uploadfs`` via :option:`platformio run --target` command.
|
||||||
|
|
||||||
By default, will be used default LD Script for the board where is specified
|
By default, will be used default LD Script for the board where is specified
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
VERSION = (2, 7, "0.dev3")
|
VERSION = (2, 7, "0.dev4")
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
@ -116,7 +116,7 @@ env.Replace(
|
|||||||
],
|
],
|
||||||
UPLOADERFSFLAGS=[
|
UPLOADERFSFLAGS=[
|
||||||
"$UPLOADERFLAGS",
|
"$UPLOADERFLAGS",
|
||||||
"-ca", "${int(SPIFFS_START, 16)}"
|
"-ca", "${int(SPIFFS_START, 16) & 0xFFFFFF}"
|
||||||
],
|
],
|
||||||
UPLOADEROTAFLAGS=[
|
UPLOADEROTAFLAGS=[
|
||||||
"--debug",
|
"--debug",
|
||||||
|
Reference in New Issue
Block a user