Skip to content

Commit

Permalink
Merge pull request #11 from midilab/xiao-usbmidi
Browse files Browse the repository at this point in the history
XIAO/TinyUSB freeze bugfix
  • Loading branch information
midilab authored Jun 10, 2022
2 parents 220d675 + 8d3823c commit 39d7b93
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 25 deletions.
33 changes: 11 additions & 22 deletions examples/XiaoUsbMasterMidiClock/XiaoUsbMasterMidiClock.ino
Original file line number Diff line number Diff line change
@@ -1,65 +1,54 @@
/* USB MIDI Sync Box
*
* This example demonstrates how to change the USB MIDI
* device name on Teensy LC and 3.x. When creating more
* that one MIDI device, custom names are much easier to
* use when selecting each device in MIDI software on
* your PC or Mac. The custom name is in the "name.c" tab.
*
* Windows and Macintosh systems often cache USB info.
* After changing the name, you may need to test on a
* different computer to observe the new name, or take
* steps to get your operating system to "forget" the
* cached info. (TODO: wanted... can anyone contribute
* instructions for these systems)
* device name on Seeedstudio XIAO M0.
*
* This example code is in the public domain.
*/
#include <Adafruit_TinyUSB.h>
#include <MIDI.h>

Adafruit_USBD_MIDI usb_midi;
MIDI_CREATE_INSTANCE(Adafruit_USBD_MIDI, usb_midi, MIDI);
MIDI_CREATE_INSTANCE(Adafruit_USBD_MIDI, usb_midi, MIDI_USB);

//MIDI_CREATE_INSTANCE(HardwareSerial, Serial1, MIDI);
#include <uClock.h>

/*
uint8_t bpm_blink_timer = 1;
void handle_bpm_led(uint32_t tick)
{
// BPM led indicator
if ( !(tick % (96)) || (tick == 1) ) { // first compass step will flash longer
bpm_blink_timer = 8;
bpm_blink_timer = 4;
digitalWrite(LED_BUILTIN, HIGH);
} else if ( !(tick % (24)) ) { // each quarter led on
bpm_blink_timer = 1;
digitalWrite(LED_BUILTIN, HIGH);
} else if ( !(tick % bpm_blink_timer) ) { // get led off
digitalWrite(LED_BUILTIN, LOW);
bpm_blink_timer = 1;
}
}
*/

// Internal clock handlers
void ClockOut96PPQN(uint32_t tick) {
// Send MIDI_CLOCK to external gears
//MIDI.sendRealTime(MIDI.Clock);
//handle_bpm_led(tick);
MIDI_USB.sendRealTime(midi::Clock);
handle_bpm_led(tick);
}

void onClockStart() {
//MIDI.sendRealTime(MIDI.Start);
MIDI_USB.sendRealTime(midi::Start);
}

void onClockStop() {
//MIDI.sendRealTime(MIDI.Stop);
MIDI_USB.sendRealTime(midi::Stop);
}

void setup() {
MIDI.begin(MIDI_CHANNEL_OMNI);
MIDI_USB.begin(MIDI_CHANNEL_OMNI);

// A led to count bpms
//pinMode(LED_BUILTIN, OUTPUT);
pinMode(LED_BUILTIN, OUTPUT);

// Setup our clock system
// Inits the clock
Expand Down
5 changes: 2 additions & 3 deletions src/uClock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,13 @@ uClockClass::uClockClass()
onClock16PPQNCallback = NULL;
onClockStartCallback = NULL;
onClockStopCallback = NULL;

// first interval calculus
setTempo(tempo);
}

void uClockClass::init()
{
uclockInitTimer();
// first interval calculus
setTempo(tempo);
}

void uClockClass::start()
Expand Down

0 comments on commit 39d7b93

Please sign in to comment.