Skip to content

Commit bd5d6ae

Browse files
committed
Bump to edge tinyusb.
This seemed to fix the crackle issue with Picade Max Audio, so who knows what it'll fix with input...
1 parent f3383d6 commit bd5d6ae

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/cmake.yml

+6
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ jobs:
5050
path: pico-sdk
5151
submodules: true
5252

53+
- name: TESTING Mangle Pico SDK's TinyUSB submodule
54+
run: |
55+
cd pico-sdk/lib/tinyusb
56+
git fetch origin master:master
57+
git checkout master
58+
5359
# Linux deps
5460
- name: Install deps
5561
if: runner.os == 'Linux'

main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#include <string_view>
3030
#include <ctype.h> // isupper / islower
3131

32-
#include "bsp/board.h"
32+
#include "bsp/board_api.h"
3333
#include "tusb.h"
3434
#include "custom_gamepad.h"
3535

@@ -349,4 +349,4 @@ void cdc_task(void)
349349
#endif
350350
}
351351
}
352-
*/
352+
*/

0 commit comments

Comments
 (0)