Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: TextLCD mbed ADXL345 VS1053b
defines.h@0:d16ac399135a, 2011-10-19 (annotated)
- Committer:
- jdumond3
- Date:
- Wed Oct 19 18:04:48 2011 +0000
- Revision:
- 0:d16ac399135a
Who changed what in which revision?
| User | Revision | Line number | New 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 |