12-polyphonic "chiptune" MIDI synthesizer for LPC1768 (Standalone version)

Dependencies:   ClockControl PowerControl mbed

Committer:
kayekss
Date:
Tue Dec 23 21:50:53 2014 +0000
Revision:
6:cda45a5e723e
Parent:
5:7bc917d03bd6
Supports "Panic on offline" feature when using MIDI-port input

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kayekss 0:727737138ac5 1 #ifndef EVENTS_H_
kayekss 0:727737138ac5 2 #define EVENTS_H_
kayekss 0:727737138ac5 3
kayekss 0:727737138ac5 4 void dispatchNoteOff(char messageBytes[3]);
kayekss 0:727737138ac5 5 void dispatchNoteOn(char messageBytes[3]);
kayekss 0:727737138ac5 6 void sendControlChange(char messageBytes[3]);
kayekss 0:727737138ac5 7 void sendProgramChange(char messageBytes[3]);
kayekss 0:727737138ac5 8 void sendPitchBend(char messageBytes[3]);
kayekss 0:727737138ac5 9 void sendSystemReset();
kayekss 0:727737138ac5 10 void allNoteOff(char messageBytes[3]);
kayekss 5:7bc917d03bd6 11 void resetAllControllers(char messageBytes[3]);
kayekss 0:727737138ac5 12 void dumpInstrumentList();
kayekss 0:727737138ac5 13
kayekss 0:727737138ac5 14 #endif