From ca877332bf8698106bd994ec1736c73bdb136ffe Mon Sep 17 00:00:00 2001 From: HASUMI Hitoshi Date: Sat, 2 Sep 2023 14:02:15 +0900 Subject: [PATCH] upgrade pico-sdk --- Dockerfile | 2 +- Rakefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b8bf7b9c..c5e5a67b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN pacman -Sy --noconfirm \ ruby-rake \ ruby-bundler -RUN git clone https://github.com/raspberrypi/pico-sdk.git -b 1.5.0 +RUN git clone https://github.com/raspberrypi/pico-sdk.git -b 1.5.1 RUN cd /pico-sdk/lib && git submodule update --init ./ ENV PICO_SDK_PATH "/pico-sdk" diff --git a/Rakefile b/Rakefile index b4ea36d9..c5c67e58 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,7 @@ require "fileutils" ENV['MRUBY_CONFIG'] = "prk_firmware-cortex-m0plus" -PICO_SDK_TAG = "1.5.0" +PICO_SDK_TAG = "1.5.1" task :default => :production