Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ jobs:
repository: raspberrypi/pico-sdk
path: pico-sdk
submodules: true
ref: 2.1.1
ref: 2.2.0
- name: Checkout pico-extras
uses: actions/checkout@v4.2.2
with:
repository: raspberrypi/pico-extras
path: pico-extras
submodules: true
ref: sdk-2.1.1
ref: sdk-2.2.0
- name: Patch tinyusb
run: |
sed -i 's/OSAL_TIMEOUT_WAIT_FOREVER/OSAL_TIMEOUT_NORMAL/g' $GITHUB_WORKSPACE/pico-sdk/lib/tinyusb/src/tusb.c
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ jobs:
repository: raspberrypi/pico-sdk
path: pico-sdk
submodules: true
ref: 2.1.1
ref: 2.2.0
- name: Checkout pico-extras
uses: actions/checkout@v4.2.2
with:
repository: raspberrypi/pico-extras
path: pico-extras
submodules: true
ref: sdk-2.1.1
ref: sdk-2.2.0
- name: Patch tinyusb
run: |
sed -i 's/OSAL_TIMEOUT_WAIT_FOREVER/OSAL_TIMEOUT_NORMAL/g' $GITHUB_WORKSPACE/pico-sdk/lib/tinyusb/src/tusb.c
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dobuild: pico-sdk pico-extras lib/fuzz.h lib/transfer_saturate2.h lib/sinewaves2

pico-sdk:
git clone https://github.com/raspberrypi/pico-sdk
cd pico-sdk && git checkout 2.1.1
cd pico-sdk && git checkout 2.2.0
cd pico-sdk && git submodule update --init --recursive

chowdsp:
Expand Down Expand Up @@ -184,7 +184,7 @@ lib/cuedsounds_ectocore.h:

pico-extras:
git clone https://github.com/raspberrypi/pico-extras.git pico-extras
cd pico-extras && git checkout sdk-2.1.1
cd pico-extras && git checkout sdk-2.2.0
cd pico-extras && git submodule update --init --recursive

copysamples:
Expand Down
Loading