Skip to content

Commit ffe6e3f

Browse files
authored
add raspberrypi-pico-rp2350-sdk (#1917)
1 parent 7260f25 commit ffe6e3f

File tree

3 files changed

+59
-0
lines changed

3 files changed

+59
-0
lines changed

peripherals/hal-sdk/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ source "$PKGS_DIR/packages/peripherals/hal-sdk/kendryte-sdk/Kconfig"
99
source "$PKGS_DIR/packages/peripherals/hal-sdk/nrf5x_sdk/Kconfig"
1010
source "$PKGS_DIR/packages/peripherals/hal-sdk/nrfx/Kconfig"
1111
source "$PKGS_DIR/packages/peripherals/hal-sdk/nuclei_sdk/Kconfig"
12+
source "$PKGS_DIR/packages/peripherals/hal-sdk/raspberrypi-pico-rp2350-sdk/Kconfig"
1213
source "$PKGS_DIR/packages/peripherals/hal-sdk/raspberrypi-pico-sdk/Kconfig"
1314
source "$PKGS_DIR/packages/peripherals/mm32/Kconfig"
1415
source "$PKGS_DIR/packages/peripherals/hal-sdk/wch/Kconfig"
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
# Kconfig file for package raspberrypi rp2350
3+
menuconfig PKG_USING_RASPBERRYPI_PICO_RP2350_SDK
4+
bool "Raspberry Pi Pico RP2350 SDK"
5+
default n
6+
7+
if PKG_USING_RASPBERRYPI_PICO_RP2350_SDK
8+
9+
config PKG_RASPBERRYPI_PICO_RP2350_SDK_PATH
10+
string
11+
default "/packages/peripherals/hal-sdk/raspberrypi-pico-rp2350-sdk"
12+
13+
choice
14+
prompt "Version"
15+
default PKG_USING_RASPBERRYPI_PICO_RP2350_SDK_LATEST_VERSION
16+
help
17+
Select the package version
18+
19+
config PKG_USING_RASPBERRYPI_PICO_RP2350_SDK_LATEST_VERSION
20+
bool "latest"
21+
endchoice
22+
23+
config PKG_RASPBERRYPI_PICO_RP2350_SDK_VER
24+
string
25+
default "latest" if PKG_USING_RASPBERRYPI_PICO_RP2350_SDK_LATEST_VERSION
26+
27+
endif
28+
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "raspberrypi-pico-rp2350-sdk",
3+
"description": "Raspberry Pi Pico RP2350 SDK",
4+
"description_zh": "Raspberry Pi Pico RP2350 SDK",
5+
"enable": "PKG_USING_RASPBERRYPI_PICO_RP2350_SDK",
6+
"keywords": [
7+
"raspberrypi",
8+
"rp2350",
9+
"sdk"
10+
],
11+
"category": "peripherals",
12+
"author": {
13+
"name": "RT-Thread-packages",
14+
"email": "[email protected]",
15+
"github": "RT-Thread-packages"
16+
},
17+
"license": "BSD-3-Clause",
18+
"repository": "https://github.com/RT-Thread-packages/raspberrypi-pico-rp2350-sdk",
19+
"icon": "unknown",
20+
"homepage": "https://github.com/RT-Thread-packages/raspberrypi-pico-rp2350-sdk#readme",
21+
"doc": "unknown",
22+
"site": [
23+
{
24+
"version": "latest",
25+
"URL": "https://github.com/RT-Thread-packages/raspberrypi-pico-rp2350-sdk.git",
26+
"filename": "",
27+
"VER_SHA": "master"
28+
}
29+
]
30+
}

0 commit comments

Comments
 (0)