diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 548d260..268f1c3 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -50,6 +50,12 @@ jobs: path: pico-sdk submodules: true + - name: TESTING Mangle Pico SDK's TinyUSB submodule + run: | + cd pico-sdk/lib/tinyusb + git fetch origin master:master + git checkout master + # Linux deps - name: Install deps if: runner.os == 'Linux' diff --git a/main.cpp b/main.cpp index ff0565c..60fe192 100644 --- a/main.cpp +++ b/main.cpp @@ -29,7 +29,7 @@ #include #include // isupper / islower -#include "bsp/board.h" +#include "bsp/board_api.h" #include "tusb.h" #include "custom_gamepad.h" @@ -349,4 +349,4 @@ void cdc_task(void) #endif } } -*/ \ No newline at end of file +*/