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
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 PARSER_H_
kayekss 0:727737138ac5 2 #define PARSER_H_
kayekss 0:727737138ac5 3
kayekss 0:727737138ac5 4 #include "RingBuffer.h"
kayekss 0:727737138ac5 5
kayekss 0:727737138ac5 6 void parseMessage(RingBuffer<char>&);
kayekss 0:727737138ac5 7 uint32_t extractSysExMessage(RingBuffer<char>&, char*);
kayekss 0:727737138ac5 8
kayekss 0:727737138ac5 9 #endif