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

Dependencies:   ClockControl PowerControl mbed

Committer:
kayekss
Date:
Sun Nov 09 08:00:33 2014 +0000
Revision:
0:727737138ac5
Child:
5:7bc917d03bd6
12-polyphonic "chiptune" MIDI synthesizer for mbed LPC1768 (Standalone version)

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 0:727737138ac5 11 void dumpInstrumentList();
kayekss 0:727737138ac5 12
kayekss 0:727737138ac5 13 #endif