Bob Attababy / Mbed 2 deprecated Lab3_1

Dependencies:   TextLCD mbed ADXL345 VS1053b

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers defines.h Source File

defines.h

00001 #ifndef _DEFINES_H
00002 #define _DEFINES_H
00003 
00004 // ----------------------------------------------------------------------------
00005 //   debug output
00006 // ----------------------------------------------------------------------------
00007 #define DEBUG
00008 
00009 #ifdef DEBUG
00010 #  define DEBUGOUT(x,y...)                printf(x, ##y);
00011 #else
00012 #  define DEBUGOUT(x,y...)
00013 #endif
00014 
00015 // ----------------------------------------------------------------------------
00016 //   VLSI VS1053b library
00017 // ----------------------------------------------------------------------------
00018 #define VS1053_PATCH_1_5_FLAC
00019 
00020 
00021 #endif