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.
debug.h
- Committer:
- greletj
- Date:
- 2012-11-28
- Revision:
- 0:b3a2e39a13ad
- Child:
- 1:a4c87bc5b008
File content as of revision 0:b3a2e39a13ad:
// debug.h
#ifdef DEBUG
# define DPRINTF( message ) pc.printf message
# define DEXEC( fct ) fct
# define DGETC( ) if( tgetc() == ESC ) exit( 1 )
#else
# define DPRINTF( message )
# define DEXEC( fct )
# define DGETC( )
#endif