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: Adafruit_GFX MODSERIAL mbed-rtos mbed
DebugPrint.h
- Committer:
- chrta
- Date:
- 2014-04-27
- Revision:
- 5:0b229ba8ede5
File content as of revision 5:0b229ba8ede5:
#ifndef DEBUGPRINT_H
#define DEBUGPRINT_H
#include "MODSERIAL.h"
extern MODSERIAL pc;
#ifdef ACTIVATE_DEBUG_OUTPUT
#define DEBUG_PRINT(format, ...) pc.printf(format, ##__VA_ARGS__)
#else
#define DEBUG_PRINT(format, ...)
#endif
#endif //DEBUGPRINT_H