Difference between revisions of "Using Visual Studio Code for ARM Development – Workspace and Project(s)"
From EdWiki
m (→Workspace and Project(s)) |
m (→Workspace and Project(s)) |
||
Line 6: | Line 6: | ||
− | Use File > Add Folder to Workspace … | + | Use menu <big>File > Add Folder to Workspace …</big> |
Line 16: | Line 16: | ||
[[image:vscode_add_blinky_folder.png|center]] | [[image:vscode_add_blinky_folder.png|center]] | ||
− | Add a new file: main.c | + | |
+ | <big>Add a new file: main.c</big> | ||
+ | |||
[[image:vscode_add_new_file.png|center]] | [[image:vscode_add_new_file.png|center]] | ||
+ | |||
Implement the main function, then save it (CTRL+S) | Implement the main function, then save it (CTRL+S) |
Revision as of 14:39, 23 March 2022
Workspace and Project(s)
Similar to other IDEs, Visual Studio Code is using the concept of a ‘workspace’. In simple words, a workspace is a collection of Folders open in the IDE. See https://code.visualstudio.com/docs/editor/workspaces for more details. In the most simple case a workspace just contains a folder which is the folder for the project. So all what we need is a add a folder.
Use menu File > Add Folder to Workspace …
Browse to an existing new (empty) folder or simply create one from the dialog:
Add a new file: main.c
Implement the main function, then save it (CTRL+S)