forked from andrey/raspberry-pi-pico-docker-sdk
Bump-up SDK version and add test for PICO2W (#12)
* Bump-up SDK Update Pico SDK 2.1.1 Pico Tool 2.1.1 RTOS Kernel 11.2.0 * add the pico2_w to the testscript Add the pico2_w for both architecture. * add pico2_w_riscv test case --------- Co-authored-by: Marco <maggo1404@users.noreply.github.com>
This commit is contained in:
@@ -23,7 +23,7 @@ RUN apt-get update -y && \
|
||||
|
||||
# Raspberry Pi Pico SDK
|
||||
ARG SDK_PATH=/usr/local/picosdk
|
||||
RUN git clone --depth 1 --branch 2.1.0 https://github.com/raspberrypi/pico-sdk $SDK_PATH && \
|
||||
RUN git clone --depth 1 --branch 2.1.1 https://github.com/raspberrypi/pico-sdk $SDK_PATH && \
|
||||
cd $SDK_PATH && \
|
||||
git submodule update --init
|
||||
|
||||
@@ -31,14 +31,14 @@ ENV PICO_SDK_PATH=$SDK_PATH
|
||||
|
||||
# FreeRTOS
|
||||
ARG FREERTOS_PATH=/usr/local/freertos
|
||||
RUN git clone --depth 1 --branch V11.0.1 https://github.com/FreeRTOS/FreeRTOS-Kernel $FREERTOS_PATH && \
|
||||
RUN git clone --depth 1 --branch V11.2.0 https://github.com/FreeRTOS/FreeRTOS-Kernel $FREERTOS_PATH && \
|
||||
cd $FREERTOS_PATH && \
|
||||
git submodule update --init --recursive
|
||||
|
||||
ENV FREERTOS_KERNEL_PATH=$FREERTOS_PATH
|
||||
|
||||
# Picotool installation
|
||||
RUN git clone --depth 1 --branch 2.1.0 https://github.com/raspberrypi/picotool.git /home/picotool && \
|
||||
RUN git clone --depth 1 --branch 2.1.1 https://github.com/raspberrypi/picotool.git /home/picotool && \
|
||||
cd /home/picotool && \
|
||||
mkdir build && \
|
||||
cd build && \
|
||||
|
||||
Reference in New Issue
Block a user