xnor_midi Documentation

git

Overview

xnor midi is a device independent midi library written by Ale xnor man.

Licence

Copyright Alex Norman, GNU GPL licence Version 3.

Webpage

xnor midi is available here: xnor midi webpage. There you will find info about how to get the source code.

Usage

The most important modules are here:

If you intend to make your own device implementation you should check this module out:

There are some sysex utilities here:

There are some miscellaneous utilities and defines here:

Example

Here is a simple example that uses the lufa usb implementation. We setup the device, register some callbacks, use some send functions and call the process function.

#include "midi_usb.h" //see the lufa_midi implementation

//forward declarations of callbacks
void fallthrough_callback(MidiDevice * device,
      uint16_t cnt, uint8_t byte0, uint8_t byte1, uint8_t byte2);
void cc_callback(MidiDevice * device,
      uint8_t chan, uint8_t num, uint8_t val);

int main(void) {
   MidiDevice midi_device;

   //setup the device
   midi_usb_init(&midi_device);

   //register callbacks
   midi_register_fallthrough_callback(&midi_device, fallthrough_callback);
   midi_register_cc_callback(&midi_device, cc_callback);

   //send some messages
   midi_send_cc(&midi_device, 0, 1, 2);
   midi_send_noteon(&midi_device, 0, 64, 127);
   midi_send_noteoff(&midi_device, 0, 64, 127);

   while(1){
      //processes input from the midi device
      //and calls the appropriate callbacks
      midi_device_process(&midi_device);
   }

   return 0; //never happens
}

//echo data back
void fallthrough_callback(MidiDevice * device,
      uint16_t cnt, uint8_t byte0, uint8_t byte1, uint8_t byte2){
   //pass the data back to the device, using the general purpose send data
   //function, any bytes after cnt are ignored
   midi_send_data(device, cnt, byte0, byte1, byte2);
}

void cc_callback(MidiDevice * device,
      uint8_t chan, uint8_t num, uint8_t val) {
   //sending it back on the next channel
   midi_send_cc(device, (chan + 1) % 16, num, val);
}