Skip to content

Commit 221dad6

Browse files
committed
Bump pico-sdk-tools version to 2.2.0-3
1 parent f695b82 commit 221dad6

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

data/0.18.0/supportedToolchains.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ darwin_arm64 = https://armkeil.blob.core.windows.net/developer/Files/downloads/g
44
darwin_x64 = https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/14.2.rel1/binrel/arm-gnu-toolchain-14.2.rel1-darwin-x86_64-arm-none-eabi.tar.xz
55
linux_x64 = https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/14.2.rel1/binrel/arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi.tar.xz
66
linux_arm64 = https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/14.2.rel1/binrel/arm-gnu-toolchain-14.2.rel1-aarch64-arm-none-eabi.tar.xz
7+
[RISCV_ZCB_RPI_2_2_0_3]
8+
win32_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.2.0-3/riscv-toolchain-15-x64-win.zip
9+
darwin_arm64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.2.0-3/riscv-toolchain-15-mac.zip
10+
darwin_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.2.0-3/riscv-toolchain-15-mac.zip
11+
linux_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.2.0-3/riscv-toolchain-15-x86_64-lin.tar.gz
12+
linux_arm64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.2.0-3/riscv-toolchain-15-aarch64-lin.tar.gz
713
[RISCV_ZCB_RPI_2_2_0_2]
814
win32_x64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.2.0-2/riscv-toolchain-15-x64-win.zip
915
darwin_arm64 = https://github.com/raspberrypi/pico-sdk-tools/releases/download/v2.2.0-2/riscv-toolchain-15-arm64-mac.zip

data/0.18.0/versionBundles.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"cmake": "v3.31.5",
5050
"picotool": "2.2.0-a4",
5151
"toolchain": "14_2_Rel1",
52-
"riscvToolchain": "RISCV_ZCB_RPI_2_2_0_2",
52+
"riscvToolchain": "RISCV_ZCB_RPI_2_2_0_3",
5353
"modifiers": {
5454
"darwin_x64": {
5555
"toolchain": "13_2_Rel1"

scripts/genCache.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
"v2.2.0-0",
6565
"v2.2.0-1",
6666
"v2.2.0-2",
67+
"v2.2.0-3",
6768
], # pico-sdk-tools
6869
["2.0.0", "2.1.0", "2.1.1", "2.2.0", "2.2.0-a4"], # picotool
6970
["v4.2.0"], # zephyr

src/utils/download.mts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const TOOLS_RELEASES: { [key: string]: string } = {
7474
// eslint-disable-next-line @typescript-eslint/naming-convention
7575
"2.1.1": "v2.1.1-1",
7676
// eslint-disable-next-line @typescript-eslint/naming-convention
77-
"2.2.0": "v2.2.0-2",
77+
"2.2.0": "v2.2.0-3",
7878
};
7979

8080
/// Release tags for picotool
@@ -88,13 +88,13 @@ const PICOTOOL_RELEASES: { [key: string]: string } = {
8888
// eslint-disable-next-line @typescript-eslint/naming-convention
8989
"2.2.0": "v2.2.0-0",
9090
// eslint-disable-next-line @typescript-eslint/naming-convention
91-
"2.2.0-a4": "v2.2.0-2",
91+
"2.2.0-a4": "v2.2.0-3",
9292
};
9393

9494
/// Release tags for openocd
9595
const OPENOCD_RELEASES: { [key: string]: string } = {
9696
// eslint-disable-next-line @typescript-eslint/naming-convention
97-
"0.12.0+dev": "v2.2.0-2",
97+
"0.12.0+dev": "v2.2.0-3",
9898
};
9999

100100
/// Translate nodejs platform names to cmake platform names
@@ -1120,10 +1120,6 @@ export async function downloadAndInstallOpenOCD(
11201120
? process.arch === "arm64"
11211121
? "-aarch64"
11221122
: "-x86_64"
1123-
: process.platform === "darwin"
1124-
? process.arch === "arm64"
1125-
? "-arm64"
1126-
: "-x86_64"
11271123
: ""
11281124
}-${TOOLS_PLATFORMS[process.platform]}.${assetExt}`;
11291125

0 commit comments

Comments
 (0)