8000 esp8266/modules/flashbdev: Start filesystem at 0x90000. · sparkfun/circuitpython@3c9510d · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3c9510d

Browse files
committed
esp8266/modules/flashbdev: Start filesystem at 0x90000.
To accommodate growing firmware.
1 parent 3372f69 commit 3c9510d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

esp8266/modules/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 = 0x89000 // SEC_SIZE
7-
NUM_BLK = 0x72
6+
START_SEC = 0x90000 // SEC_SIZE
7+
NUM_BLK = 0x6b
88

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

0 commit comments

Comments
 (0)
0