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: BLE_API X_NUCLEO_IDB0XA1 mbed
Fork of BLE_HeartRate_IDB0XA1 by
bricks/trace.h
- Committer:
- hux
- Date:
- 2017-10-01
- Revision:
- 29:a6b74dfdd5f2
- Parent:
- 28:307f58df778a
File content as of revision 29:a6b74dfdd5f2:
// trace.h - tracing
#ifndef _TRACE_H_
#define _TRACE_H_
#include <mbed.h>
#include "bricks/o.h"
void trace(O&o, int level, const char *msg); // trace a message
void trace(O&o, int level, const char*, int); // trace an int value
void traceln(O&o, int level, const char*msg); // trace with CR & LF
void verbose(O&o, int level = 9999); // setup verbose level
#endif // _TRACE_H_
