From 2e3f10f756e1b65adf8cf05129ea14dc0eb46a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Wed, 10 Apr 2024 20:01:41 +0200 Subject: [PATCH 1/5] github: bump checkout to v4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Álvaro Fernández Rojas --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bad1152..4a20fa5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: 'Check out code' - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 'Install dependencies' run: | From 2f05798e367f75270a55d781b9ec9d39b8a09740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Wed, 10 Apr 2024 20:02:38 +0200 Subject: [PATCH 2/5] github: bump upload-artifact to v4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Álvaro Fernández Rojas --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a20fa5..0dfe717 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: make -C build - name: 'Upload binary' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: pico-uart-bridge.uf2 path: build/uart_bridge.uf2 From b74af3b0d8aa27cb01193f1283394112809b2815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Wed, 10 Apr 2024 19:54:05 +0200 Subject: [PATCH 3/5] uart-bridge: restore clock speed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Apparently, some boards do not support setting a higher CPU clock: https://github.com/Noltari/pico-uart-bridge/issues/11#issuecomment-2048104347 Signed-off-by: Álvaro Fernández Rojas --- uart-bridge.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/uart-bridge.c b/uart-bridge.c index 9791df6..c4e0805 100644 --- a/uart-bridge.c +++ b/uart-bridge.c @@ -301,8 +301,6 @@ int main(void) { int itf; - set_sys_clock_khz(250000, false); - usbd_serial_init(); for (itf = 0; itf < CFG_TUD_CDC; itf++) From c8a4bc513f0898e639421b10423d65e65cb81887 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Thu, 11 Apr 2024 19:11:33 +0200 Subject: [PATCH 4/5] pico-sdk: update to v1.5.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Álvaro Fernández Rojas --- pico-sdk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pico-sdk b/pico-sdk index 2e6142b..6a7db34 160000 --- a/pico-sdk +++ b/pico-sdk @@ -1 +1 @@ -Subproject commit 2e6142b15b8a75c1227dd3edbe839193b2bf9041 +Subproject commit 6a7db34ff63345a7badec79ebea3aaef1712f374 From 9d0df3277dcbbbcc9dd5e847205407560f512194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Tue, 16 Apr 2024 12:22:25 +0200 Subject: [PATCH 5/5] github: ci: switch to ubuntu-22.04 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Álvaro Fernández Rojas --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0dfe717..5478126 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,10 +1,12 @@ name: CI -on: [push, pull_request] +on: + - push + - pull_request jobs: CI: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: 'Check out code' uses: actions/checkout@v4