Skip to content

Double-indirect the ESP32 partition file name #71

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "arduino-littlefs-upload",
"displayName": "arduino-littlefs-upload",
"description": "Build and uploads LittleFS filesystems for the Arduino-Pico RP2040 core, ESP8266 core, or ESP32 core under Arduino IDE 2.2.1 or higher",
"version": "1.5.0",
"version": "1.5.1",
"engines": {
"vscode": "^1.82.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function getSelectedPartitionScheme(boardDetails : BoardDetails) : string | unde
return;
}

return selectedOption.value;
return boardDetails.buildProperties["menu.PartitionScheme." + selectedOption.value + ".build.partitions"];
}

function getDefaultPartitionScheme(boardDetails : BoardDetails) : string | undefined {
Expand Down