Skip to content

Commit

Permalink
chore: Fencing tests for BLE & ESP32
Browse files Browse the repository at this point in the history
  • Loading branch information
franky47 committed Jul 18, 2023
1 parent b8f2c9a commit c0fd2a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/Bench/Bench.ino
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// All other Arduinos: Connect pins 2 and 3.
// The program will then wait for 100 loops and print the results.

#if defined(ARDUINO_SAM_DUE) || defined(USBCON) || defined(ARDUINO_NANO33BLE)
#if defined(ARDUINO_SAM_DUE) || defined(USBCON) || defined(ARDUINO_ARDUINO_NANO33BLE) || defined(ESP32)
// Print through USB and bench with Hardware serial
MIDI_CREATE_INSTANCE(HardwareSerial, Serial1, midiBench);
#else
Expand Down
2 changes: 1 addition & 1 deletion examples/DualMerger/DualMerger.ino
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#if defined(ARDUINO_SAM_DUE)
MIDI_CREATE_INSTANCE(HardwareSerial, Serial, midiA);
MIDI_CREATE_INSTANCE(HardwareSerial, Serial1, midiB);
#elif defined(ARDUINO_SAMD_ZERO) || defined(ARDUINO_NANO33BLE)
#elif defined(ARDUINO_SAMD_ZERO) || defined(ARDUINO_ARDUINO_NANO33BLE) || defined(ESP32)
MIDI_CREATE_INSTANCE(Serial_, SerialUSB, midiA);
MIDI_CREATE_INSTANCE(HardwareSerial, Serial1, midiB);
#elif defined(USBCON) || defined(__MK20DX128__) || defined(__MK20DX256__) || defined(__MKL26Z64__)
Expand Down

0 comments on commit c0fd2a7

Please sign in to comment.