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

Dependencies:   ClockControl PowerControl mbed

note.h

Committer:
kayekss
Date:
2014-12-23
Revision:
6:cda45a5e723e
Parent:
0:727737138ac5

File content as of revision 6:cda45a5e723e:

#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