Bop-It Game

Dependencies:   TextLCD mbed ADXL345 VS1053b

Committer:
jdumond3
Date:
Wed Oct 19 18:04:48 2011 +0000
Revision:
0:d16ac399135a

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jdumond3 0:d16ac399135a 1 #ifndef _DEFINES_H
jdumond3 0:d16ac399135a 2 #define _DEFINES_H
jdumond3 0:d16ac399135a 3
jdumond3 0:d16ac399135a 4 // ----------------------------------------------------------------------------
jdumond3 0:d16ac399135a 5 // debug output
jdumond3 0:d16ac399135a 6 // ----------------------------------------------------------------------------
jdumond3 0:d16ac399135a 7 #define DEBUG
jdumond3 0:d16ac399135a 8
jdumond3 0:d16ac399135a 9 #ifdef DEBUG
jdumond3 0:d16ac399135a 10 # define DEBUGOUT(x,y...) printf(x, ##y);
jdumond3 0:d16ac399135a 11 #else
jdumond3 0:d16ac399135a 12 # define DEBUGOUT(x,y...)
jdumond3 0:d16ac399135a 13 #endif
jdumond3 0:d16ac399135a 14
jdumond3 0:d16ac399135a 15 // ----------------------------------------------------------------------------
jdumond3 0:d16ac399135a 16 // VLSI VS1053b library
jdumond3 0:d16ac399135a 17 // ----------------------------------------------------------------------------
jdumond3 0:d16ac399135a 18 #define VS1053_PATCH_1_5_FLAC
jdumond3 0:d16ac399135a 19
jdumond3 0:d16ac399135a 20
jdumond3 0:d16ac399135a 21 #endif