mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
esp8266/modules/flashbdev: Start filesystem at 0x90000.
To accommodate growing firmware.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user