From bd5d6ae33b98bb8b98ff31f7212af262c6441fa7 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Mon, 29 Jul 2024 15:41:55 +0100 Subject: [PATCH] Bump to edge tinyusb. This seemed to fix the crackle issue with Picade Max Audio, so who knows what it'll fix with input... --- .github/workflows/cmake.yml | 6 ++++++ main.cpp | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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 +*/