Skip to content
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

Update detection to use pico_sdk_init() #178

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
28 changes: 22 additions & 6 deletions src/extension.mts
Original file line number Diff line number Diff line change
Expand Up @@ -176,15 +176,12 @@ export async function activate(context: ExtensionContext): Promise<void> {

const workspaceFolder = workspace.workspaceFolders?.[0];

// check if is a pico project
if (
workspaceFolder === undefined ||
!existsSync(join(workspaceFolder.uri.fsPath, "pico_sdk_import.cmake"))
) {
// check if there is a workspace folder
if (workspaceFolder === undefined) {
// finish activation
Logger.warn(
LoggerSource.extension,
"No workspace folder or Pico project found."
"No workspace folder found."
);
await commands.executeCommand(
"setContext",
Expand All @@ -210,6 +207,25 @@ export async function activate(context: ExtensionContext): Promise<void> {
return;
}

// check for pico_sdk_init() in CMakeLists.txt
if (
!readFileSync(cmakeListsFilePath)
.toString("utf-8")
.includes("pico_sdk_init()")
) {
Logger.warn(
LoggerSource.extension,
"No pico_sdk_init() in CMakeLists.txt found."
);
await commands.executeCommand(
"setContext",
ContextKeys.isPicoProject,
false
);

return;
}

// check if it has .vscode folder and cmake donotedit header in CMakelists.txt
if (
!existsSync(join(workspaceFolder.uri.fsPath, ".vscode")) ||
Expand Down
Loading