My first attempt of Thread based mp3 player with mbed RTOS *player thread *volume control thread

Dependencies:   mbed VS1053b

Thread_mp3/defines.h

Committer:
takashikojo
Date:
2012-03-19
Revision:
1:4d5a54104bbb
Parent:
0:82078eeba8ba

File content as of revision 1:4d5a54104bbb:

#ifndef _DEFINES_H
#define _DEFINES_H

// ----------------------------------------------------------------------------
//   debug output
// ----------------------------------------------------------------------------
// #define DEBUG

#ifdef DEBUG
#  define DEBUGOUT(x,y...)                printf(x, ##y);
#else
#  define DEBUGOUT(x,y...)
#endif

// ----------------------------------------------------------------------------
//   VLSI VS1053b library
// ----------------------------------------------------------------------------
#define VS1053_PATCH_1_5_FLAC


#endif