From f5354392febfa0f730b644d1a76110d70b82de97 Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Wed, 29 Mar 2023 09:35:49 +0200 Subject: [PATCH 1/2] CI: Fix name of build dependency USBHostMbed5. It's now Arduino_USBHostMbed5, due to renaming the library to be consistent with Arduino library naming. --- .github/workflows/compile-examples.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compile-examples.yml b/.github/workflows/compile-examples.yml index 4c15e24..7d112a2 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -48,7 +48,7 @@ jobs: libraries: | # Install the library from the local path. - source-path: ./ - - source-url: https://github.com/facchinm/USBHostMbed5.git + - name: Arduino_USBHostMbed5 sketch-paths: | - examples enable-deltas-report: true From 3107fcb4a6cf681c6638f20d20271fa8bf5c3861 Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Wed, 29 Mar 2023 09:43:26 +0200 Subject: [PATCH 2/2] Fix: rename header include file. --- examples/Beginner/Audio_Playback/Audio_Playback.ino | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/Beginner/Audio_Playback/Audio_Playback.ino b/examples/Beginner/Audio_Playback/Audio_Playback.ino index a860e43..72fcc75 100644 --- a/examples/Beginner/Audio_Playback/Audio_Playback.ino +++ b/examples/Beginner/Audio_Playback/Audio_Playback.ino @@ -6,8 +6,10 @@ */ #include + +#include + #include -#include #include AdvancedDAC dac1(A12);