xypad theremin for LPC1768

Dependencies:   MODDMA mbed

Committer:
exopiped
Date:
Mon Mar 14 23:43:44 2016 +0000
Revision:
2:c5eeaf1c8e69
Parent:
0:8ee38453bad9
touch screen driver glitches removed; debug statements commented out

Who changed what in which revision?

UserRevisionLine numberNew contents of line
exopiped 0:8ee38453bad9 1 #ifndef NOTE_H
exopiped 0:8ee38453bad9 2 #define NOTE_H
exopiped 0:8ee38453bad9 3 /*
exopiped 0:8ee38453bad9 4 * note.h
exopiped 0:8ee38453bad9 5 * Start, update, release or end note, and fill dma buffers for
exopiped 0:8ee38453bad9 6 * one note at a time.
exopiped 0:8ee38453bad9 7 */
exopiped 0:8ee38453bad9 8 #define NIL (-1)
exopiped 0:8ee38453bad9 9
exopiped 0:8ee38453bad9 10 void note_init(void);
exopiped 0:8ee38453bad9 11 void note_update(void);
exopiped 0:8ee38453bad9 12 bool note_active(void);
exopiped 0:8ee38453bad9 13 void note_set_bufno(int bufno);
exopiped 0:8ee38453bad9 14 #endif