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/debug.h
- Committer:
- millanea
- Date:
- 2015-07-07
- Revision:
- 0:99928431bb44
File content as of revision 0:99928431bb44:
#ifndef DEBUG_H #define DEBUG_H #include "mbed.h" // The debug serial connection extern Serial serialUSB ; // Serial debug level #define DEBUG_LEVEL 0 // 0 - NO DEBUG // 1 - DEBUG - SERIAL USB // Debug print defines #if DEBUG_LEVEL == 0 #define debugprintf(format, args...) #elif DEBUG_LEVEL == 1 #define debugprintf(format, args...) serialUSB.printf (format , ##args) #endif #endif