Skip to content

Commit cda2ea6

Browse files
committed
added pico-sdk
1 parent 59e2ca0 commit cda2ea6

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/dmdreader.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@ jobs:
4545
arch: x64
4646
steps:
4747
- uses: actions/checkout@v4
48+
with:
49+
fetch-depth: 1
50+
- name: Checkout pico-sdk
51+
uses: actions/checkout@v4
52+
with:
53+
repository: raspberrypi/pico-sdk
54+
path: /home/runner/pico-sdk
55+
ref: 2.1.1
56+
fetch-depth: 1
4857
- if: (matrix.platform == 'linux' && matrix.arch == 'x64')
4958
run: sudo apt install gdb-multiarch cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib cmake
5059
- if: (!(matrix.platform == 'linux' && matrix.arch == 'aarch64'))

scripts/install-software

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# Installs additional software for development
4-
sudo apt-get -y install gdb-multiarch cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib openocd cmake
4+
sudo apt -y install gdb-multiarch cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib openocd cmake
55

66
cd
77
git clone https://github.com/raspberrypi/pico-sdk

0 commit comments

Comments
 (0)