Skip to content

Commit 5edc749

Browse files
Calculate the fsEnd for ESP32 properly (#63)
1 parent 71a20b8 commit 5edc749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ export function activate(context: vscode.ExtensionContext) {
284284
var parttype = partitionEntry[2].toUpperCase().trim();
285285
if ((parttype == "SPIFFS") || (parttype == "LITTLEFS")) {
286286
fsStart = offset;
287-
fsEnd = length;
287+
fsEnd = fsStart + length;
288288
}
289289
}
290290
}

0 commit comments

Comments
 (0)