Skip to content

Commit dfc5f73

Browse files
authored
Merge pull request #1555 from adafruit/fix-ci
Fix ci
2 parents d0cdfec + 9ef180c commit dfc5f73

6 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/githubci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
arduino-platform: ["uno", "nrf52832", "cpx_ada", "pyportal", "protrinket_3v", "protrinket_5v", "metro_m0", "esp8266", "esp32", "trinket_3v", "trinket_5v", "gemma", "flora", "feather32u4", "feather_m0_express", "gemma_m0", "trinket_m0", "hallowing_m0", "monster_m4sk", "hallowing_m4", "neotrellis_m4", "pybadge", "cpb", "cpc", "funhouse", "magtag"]
10+
arduino-platform: ["uno", "nrf52832", "cpx_ada", "pyportal", "protrinket_3v", "protrinket_5v", "metro_m0", "esp8266", "esp32", "trinket_3v", "trinket_5v", "gemma", "flora", "feather32u4", "feather_m0_express", "gemma_m0", "trinket_m0", "hallowing_m0", "monster_m4sk", "hallowing_m4", "hallowing_m4_tinyusb", "neotrellis_m4", "pybadge", "cpb", "cpc", "funhouse", "magtag"]
1111

1212
runs-on: ubuntu-18.04
1313

Joy_of_Arcada/Joy_of_Arcada.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
#include "graphics.h" // Face bitmaps are here
4040
#include "sound.h" // "Pew" sound is here
4141
#include "keys.h" // Key name-to-value table is here
42-
//#include "Adafruit_TinyUSB.h"
42+
#include "Adafruit_TinyUSB.h"
4343

4444
#define JOY_CONFIG_FILE "/joy.cfg"
4545

M4_Eyes/M4_Eyes.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#error "Please select Tools->USB Stack->TinyUSB before compiling"
3535
#endif
3636

37+
#include <Adafruit_TinyUSB.h>
3738
#define GLOBAL_VAR
3839
#include "globals.h"
3940

MIDI_FeatherWing/MIDI_FeatherWing.ino

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
#include <MIDI.h>
88

9+
#ifdef USE_TINYUSB
10+
#include <Adafruit_TinyUSB.h>
11+
#endif
12+
913
MIDI_CREATE_DEFAULT_INSTANCE();
1014

1115
int notes[] = {69, 72, 74, 76, 72, 81, 79}; // melody notes

0 commit comments

Comments
 (0)