Skip to content

Commit 03b22e9

Browse files
committed
Update README
Signed-off-by: paulober <[email protected]>
1 parent f4a0c3b commit 03b22e9

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"--extensionDevelopmentPath=${workspaceFolder}"
1414
],
1515
"outFiles": [
16-
"${workspaceFolder}/dist/**/*.js"
16+
"${workspaceFolder}/dist/**/*.cjs"
1717
],
1818
"preLaunchTask": "${defaultBuildTask}"
1919
},

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,17 @@ For comprehensive setup instructions, refer to the [Getting Started guide](https
2121

2222
## Requirements by OS
2323

24-
> Supported Platforms: Raspberry Pi OS (64-bit), Windows x64, macOS (Sonoma and newer), Linux x64 and arm64
24+
> Supported Platforms: Raspberry Pi OS (64-bit), Windows 10/11 (x86_64), macOS Sonoma (14.0) and newer, Linux x64 and arm64
2525
2626
- Visual Studio Code v1.87.0 or later
2727

28+
### Raspberry Pi OS
29+
As of March 2024, all new Raspberry Pi OS images come with the necessary tools pre-installed. For older images, you can install the required tools by running:
30+
31+
```bash
32+
sudo apt install openocd ninja-build
33+
```
34+
2835
### macOS
2936
To meet the requirements for macOS, run the following command in Terminal to install necessary tools:
3037
```zsh
@@ -33,21 +40,15 @@ xcode-select --install
3340
This command installs all of the necessary tools, including but not limited to:
3441
- Git 2.28 or later (ensure it's in your PATH)
3542
- Tar (ensure it's in your PATH)
36-
- Native C/C++ compiler (ensure it's in your PATH); supported compilers include `gcc` and `clang`
3743

38-
### Raspberry Pi OS
39-
As of March 2024, all new Raspberry Pi OS images come with the necessary tools pre-installed. For older images, you can install the required tools by running:
44+
### Windows
4045

41-
```bash
42-
sudo apt install openocd ninja-build
43-
```
46+
No additional requirements are needed for Windows.
4447

4548
### Linux
4649
- Python 3.9 or later (ensure it’s in your PATH or set in settings)
4750
- Git 2.28 or later (ensure it’s in your PATH)
4851
- Tar (ensure it’s in your PATH)
49-
- Native C/C++ compiler (ensure it’s in your PATH); supported compilers include `gcc` and `clang`
50-
- \[Optional\] OpenOCD for debugging (Raspberry Pi OS only)
5152
- \[Optional\] gdb-multiarch for debugging (x86_64 only)
5253
- For \[Ubuntu 22.04\], install `libftdi1-2` and `libhidapi-hidraw0` packages to use OpenOCD
5354

src/commands/configureCmake.mts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ export default class ConfigureCmakeCommand extends Command {
1818
// check if is a pico project
1919
if (workspaceFolder === undefined) {
2020
this._logger.warn("No workspace folder found.");
21-
await window.showWarningMessage("No workspace folder found.");
21+
void window.showWarningMessage("No workspace folder found.");
2222

2323
return;
2424
}
2525

2626
if (await configureCmakeNinja(workspaceFolder.uri)) {
27-
await window.showInformationMessage("CMake has configured your build.");
27+
void window.showInformationMessage("CMake has configured your build.");
2828
} else {
29-
await window.showWarningMessage("CMake has not configured your build.");
29+
void window.showWarningMessage("CMake has not configured your build.");
3030
}
3131
}
3232
}

0 commit comments

Comments
 (0)