Commit 3c9510d7 authored by Paul Sokolovsky's avatar Paul Sokolovsky

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

To accommodate growing firmware.
parent 3372f695
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment