Skip to content

Commit c0fd2a7

Browse files
committed
chore: Fencing tests for BLE & ESP32
1 parent b8f2c9a commit c0fd2a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/Bench/Bench.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// All other Arduinos: Connect pins 2 and 3.
88
// The program will then wait for 100 loops and print the results.
99

10-
#if defined(ARDUINO_SAM_DUE) || defined(USBCON) || defined(ARDUINO_NANO33BLE)
10+
#if defined(ARDUINO_SAM_DUE) || defined(USBCON) || defined(ARDUINO_ARDUINO_NANO33BLE) || defined(ESP32)
1111
// Print through USB and bench with Hardware serial
1212
MIDI_CREATE_INSTANCE(HardwareSerial, Serial1, midiBench);
1313
#else

examples/DualMerger/DualMerger.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if defined(ARDUINO_SAM_DUE)
1010
MIDI_CREATE_INSTANCE(HardwareSerial, Serial, midiA);
1111
MIDI_CREATE_INSTANCE(HardwareSerial, Serial1, midiB);
12-
#elif defined(ARDUINO_SAMD_ZERO) || defined(ARDUINO_NANO33BLE)
12+
#elif defined(ARDUINO_SAMD_ZERO) || defined(ARDUINO_ARDUINO_NANO33BLE) || defined(ESP32)
1313
MIDI_CREATE_INSTANCE(Serial_, SerialUSB, midiA);
1414
MIDI_CREATE_INSTANCE(HardwareSerial, Serial1, midiB);
1515
#elif defined(USBCON) || defined(__MK20DX128__) || defined(__MK20DX256__) || defined(__MKL26Z64__)

0 commit comments

Comments
 (0)