esp8266/modules/flashbdev: Start filesystem at 0x90000.

To accommodate growing firmware.
esp8266-idle-ticks
Paul Sokolovsky 2016-08-09 14:59:27 +03:00
parent 3372f69586
commit 3c9510d767
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ import esp
class FlashBdev:
SEC_SIZE = 4096
START_SEC = 0x89000 // SEC_SIZE
NUM_BLK = 0x72
START_SEC = 0x90000 // SEC_SIZE
NUM_BLK = 0x6b
def __init__(self, blocks=NUM_BLK):
self.blocks = blocks