Skip to content

Commit 3a5a35a

Browse files
committed
esp8266/scripts/flashbdev: Use all available space in 1MB FlashROM for FS.
1 parent d76ebde commit 3a5a35a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

esp8266/scripts/flashbdev.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
class FlashBdev:
44

55
SEC_SIZE = 4096
6-
START_SEC = 0xa0000 // SEC_SIZE
7-
NUM_BLK = 64
6+
START_SEC = 0x89000 // SEC_SIZE
7+
NUM_BLK = 0x73
88

99
def __init__(self, blocks=NUM_BLK):
1010
self.blocks = blocks

0 commit comments

Comments
 (0)