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

Dependencies:   ClockControl PowerControl mbed

note.h

Committer:
kayekss
Date:
2014-11-09
Revision:
0:727737138ac5

File content as of revision 0:727737138ac5:

#ifndef NOTE_H_
#define NOTE_H_

typedef struct {
    uint32_t noteOnMs;
    uint8_t  channel;     // channel. 0: not in use, 1..16 is valid
    uint8_t  noteNumber;
    uint8_t  velocity;
} note_t;

#endif