mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
bump SDK version to 2.1.1 and update picotool dependency since 2.1.1 is faster
This commit is contained in:
parent
6a7b4c7160
commit
b5af60771c
3 changed files with 4 additions and 4 deletions
|
|
@ -1,12 +1,12 @@
|
||||||
module(
|
module(
|
||||||
name = "pico-sdk",
|
name = "pico-sdk",
|
||||||
version = "2.1.1-develop",
|
version = "2.1.1",
|
||||||
)
|
)
|
||||||
|
|
||||||
bazel_dep(name = "platforms", version = "0.0.9")
|
bazel_dep(name = "platforms", version = "0.0.9")
|
||||||
bazel_dep(name = "bazel_skylib", version = "1.6.1")
|
bazel_dep(name = "bazel_skylib", version = "1.6.1")
|
||||||
bazel_dep(name = "rules_python", version = "0.36.0")
|
bazel_dep(name = "rules_python", version = "0.36.0")
|
||||||
bazel_dep(name = "picotool", version = "2.1.0")
|
bazel_dep(name = "picotool", version = "2.1.1")
|
||||||
bazel_dep(name = "rules_cc", version = "0.0.10")
|
bazel_dep(name = "rules_cc", version = "0.0.10")
|
||||||
|
|
||||||
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ set(PICO_SDK_VERSION_MINOR 1)
|
||||||
set(PICO_SDK_VERSION_REVISION 1)
|
set(PICO_SDK_VERSION_REVISION 1)
|
||||||
# PICO_BUILD_DEFINE: PICO_SDK_VERSION_PRE_RELEASE_ID, Optional SDK pre-release version identifier, default=Current SDK pre-release identifier, type=string, group=pico_base
|
# PICO_BUILD_DEFINE: PICO_SDK_VERSION_PRE_RELEASE_ID, Optional SDK pre-release version identifier, default=Current SDK pre-release identifier, type=string, group=pico_base
|
||||||
# PICO_CMAKE_CONFIG: PICO_SDK_VERSION_PRE_RELEASE_ID, Optional SDK pre-release version identifier, default=Current SDK pre-release identifier, type=string, group=pico_base
|
# PICO_CMAKE_CONFIG: PICO_SDK_VERSION_PRE_RELEASE_ID, Optional SDK pre-release version identifier, default=Current SDK pre-release identifier, type=string, group=pico_base
|
||||||
set(PICO_SDK_VERSION_PRE_RELEASE_ID develop)
|
# set(PICO_SDK_VERSION_PRE_RELEASE_ID develop)
|
||||||
|
|
||||||
# PICO_BUILD_DEFINE: PICO_SDK_VERSION_STRING, SDK version string, type=string, default=Current SDK version string, group=pico_base
|
# PICO_BUILD_DEFINE: PICO_SDK_VERSION_STRING, SDK version string, type=string, default=Current SDK version string, group=pico_base
|
||||||
# PICO_CMAKE_CONFIG: PICO_SDK_VERSION_STRING, SDK version string, type=string, default=Current SDK version string, group=pico_base
|
# PICO_CMAKE_CONFIG: PICO_SDK_VERSION_STRING, SDK version string, type=string, default=Current SDK version string, group=pico_base
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,7 @@ endfunction()
|
||||||
|
|
||||||
# Check picotool is installed, or download and build it if not installed
|
# Check picotool is installed, or download and build it if not installed
|
||||||
function(pico_init_picotool)
|
function(pico_init_picotool)
|
||||||
set(picotool_VERSION_REQUIRED 2.1.0)
|
set(picotool_VERSION_REQUIRED 2.1.1)
|
||||||
if (NOT TARGET picotool AND NOT DEFINED picotool_FOUND)
|
if (NOT TARGET picotool AND NOT DEFINED picotool_FOUND)
|
||||||
# Build path of local install dir
|
# Build path of local install dir
|
||||||
if (DEFINED ENV{PICOTOOL_FETCH_FROM_GIT_PATH} AND (NOT PICOTOOL_FETCH_FROM_GIT_PATH))
|
if (DEFINED ENV{PICOTOOL_FETCH_FROM_GIT_PATH} AND (NOT PICOTOOL_FETCH_FROM_GIT_PATH))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue