Skip to content

Commit 6a7f2c1

Browse files
committed
Fix pico_w options, and readme fixup
1 parent 03a78bd commit 6a7f2c1

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

README.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,11 @@ For comprehensive setup instructions, refer to the [Getting Started guide](https
3939

4040
> **Supported Platforms: Raspberry Pi OS (64-bit), Windows 10/11 (x86_64), macOS Sonoma (14.0) and newer, Linux x64 and arm64**
4141
42-
- Visual Studio Code v1.87.0 or later
42+
- Visual Studio Code v1.92.1 or later
4343

44-
### Raspberry Pi OS
45-
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+
### Raspberry Pi OS and Windows
4645

47-
```bash
48-
sudo apt install openocd ninja-build
49-
```
46+
No additional requirements are needed.
5047

5148
### macOS
5249
To meet the requirements for macOS, run the following command in Terminal to install necessary tools:
@@ -57,10 +54,6 @@ This command installs all of the necessary tools, including but not limited to:
5754
- **Git 2.28 or later** (ensure it's in your PATH)
5855
- **Tar** (ensure it's in your PATH)
5956

60-
### Windows
61-
62-
No additional requirements are needed for Windows.
63-
6457
### Linux
6558
- **Python 3.9 or later** (ensure it’s in your PATH or set in settings)
6659
- **Git 2.28 or later** (ensure it’s in your PATH)

src/webview/newProjectPanel.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,7 @@ export class NewProjectPanel {
11001100
theData.hwtimerFeature ? Library.timer : null,
11011101
theData.hwwatchdogFeature ? Library.watch : null,
11021102
theData.hwclocksFeature ? Library.clocks : null,
1103-
theData.boardType === "pico-w"
1103+
theData.boardType === "pico_w"
11041104
? Object.values(PicoWirelessOption)[theData.picoWireless]
11051105
: null,
11061106
].filter(option => option !== null) as Library[],

0 commit comments

Comments
 (0)