Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions peripherals/hal-sdk/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ source "$PKGS_DIR/packages/peripherals/hal-sdk/kendryte-sdk/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/nrf5x_sdk/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/nrfx/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/nuclei_sdk/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/raspberrypi-pico-rp2350-sdk/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/raspberrypi-pico-sdk/Kconfig"
source "$PKGS_DIR/packages/peripherals/mm32/Kconfig"
source "$PKGS_DIR/packages/peripherals/hal-sdk/wch/Kconfig"
Expand Down
28 changes: 28 additions & 0 deletions peripherals/hal-sdk/raspberrypi-pico-rp2350-sdk/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

# Kconfig file for package raspberrypi rp2350
menuconfig PKG_USING_RASPBERRYPI_PICO_RP2350_SDK
bool "Raspberry Pi Pico RP2350 SDK"
default n

if PKG_USING_RASPBERRYPI_PICO_RP2350_SDK

config PKG_RASPBERRYPI_PICO_RP2350_SDK_PATH
string
default "/packages/peripherals/hal-sdk/raspberrypi-pico-rp2350-sdk"

choice
prompt "Version"
default PKG_USING_RASPBERRYPI_PICO_RP2350_SDK_LATEST_VERSION
help
Select the package version

config PKG_USING_RASPBERRYPI_PICO_RP2350_SDK_LATEST_VERSION
bool "latest"
endchoice

config PKG_RASPBERRYPI_PICO_RP2350_SDK_VER
string
default "latest" if PKG_USING_RASPBERRYPI_PICO_RP2350_SDK_LATEST_VERSION

endif

30 changes: 30 additions & 0 deletions peripherals/hal-sdk/raspberrypi-pico-rp2350-sdk/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "raspberrypi-pico-rp2350-sdk",
"description": "Raspberry Pi Pico RP2350 SDK",
"description_zh": "Raspberry Pi Pico RP2350 SDK",
"enable": "PKG_USING_RASPBERRYPI_PICO_RP2350_SDK",
"keywords": [
"raspberrypi",
"rp2350",
"sdk"
],
"category": "peripherals",
"author": {
"name": "RT-Thread-packages",
"email": "[email protected]",
"github": "RT-Thread-packages"
},
"license": "BSD-3-Clause",
"repository": "https://github.com/RT-Thread-packages/raspberrypi-pico-rp2350-sdk",
"icon": "unknown",
"homepage": "https://github.com/RT-Thread-packages/raspberrypi-pico-rp2350-sdk#readme",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/RT-Thread-packages/raspberrypi-pico-rp2350-sdk.git",
"filename": "",
"VER_SHA": "master"
}
]
}