File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -23,22 +23,22 @@ RUN apt-get update -y && \
2323
2424# Raspberry Pi Pico SDK
2525ARG SDK_PATH=/usr/local/picosdk
26- RUN git clone --depth 1 --branch 2.1.0 https://github.com/raspberrypi/pico-sdk $SDK_PATH && \
26+ RUN git clone --depth 1 --branch 2.1.1 https://github.com/raspberrypi/pico-sdk $SDK_PATH && \
2727 cd $SDK_PATH && \
2828 git submodule update --init
2929
3030ENV PICO_SDK_PATH=$SDK_PATH
3131
3232# FreeRTOS
3333ARG FREERTOS_PATH=/usr/local/freertos
34- RUN git clone --depth 1 --branch V11.0.1 https://github.com/FreeRTOS/FreeRTOS-Kernel $FREERTOS_PATH && \
34+ RUN git clone --depth 1 --branch V11.2.0 https://github.com/FreeRTOS/FreeRTOS-Kernel $FREERTOS_PATH && \
3535 cd $FREERTOS_PATH && \
3636 git submodule update --init --recursive
3737
3838ENV FREERTOS_KERNEL_PATH=$FREERTOS_PATH
3939
4040# Picotool installation
41- RUN git clone --depth 1 --branch 2.1.0 https://github.com/raspberrypi/picotool.git /home/picotool && \
41+ RUN git clone --depth 1 --branch 2.1.1 https://github.com/raspberrypi/picotool.git /home/picotool && \
4242 cd /home/picotool && \
4343 mkdir build && \
4444 cd build && \
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if [[ -z $1 ]]; then
99 echo " Please provide an SDK image you want to test"
1010fi
1111
12- declare -a boards=(" pico" " pico_w" " pico2" " pico2_riscv" )
12+ declare -a boards=(" pico" " pico_w" " pico2" " pico2_riscv" " pico2_w " " pico2_w_riscv " )
1313
1414
1515docker run -d -it --name pico-sdk --mount type=bind,source=" ${PWD} " /test_poject,target=/home/dev " $1 "
2020 docker exec pico-sdk /bin/bash -c " rm -rf /home/dev/build"
2121 if [[ $board = pico2_riscv ]] ; then
2222 docker exec -i pico-sdk /bin/bash -c " cd /home/dev && mkdir build && cd build && cmake .. -DPICO_BOARD=pico2 -DPICO_PLATFORM=rp2350-riscv && make -j4"
23+ elif [[ $board = pico2_w_riscv ]] ; then
24+ docker exec -i pico-sdk /bin/bash -c " cd /home/dev && mkdir build && cd build && cmake .. -DPICO_BOARD=pico2_w -DPICO_PLATFORM=rp2350-riscv && make -j4"
2325 else
2426 docker exec -i pico-sdk /bin/bash -c " cd /home/dev && mkdir build && cd build && cmake .. -DPICO_BOARD=${board} && make -j4"
2527 fi
You can’t perform that action at this time.
0 commit comments