TOF based Presence Detector

Dependencies:   BLE_API X_NUCLEO_6180XA1 X_NUCLEO_IDB0XA1 mbed

Fork of BLE_HeartRate_IDB0XA1 by ST

Committer:
hux
Date:
Mon Aug 20 16:42:59 2018 +0000
Revision:
28:a23b16555909
TOF Detector - Basis for Presence Detection

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hux 28:a23b16555909 1 // trace.h - tracing
hux 28:a23b16555909 2 #ifndef _TRACE_H_
hux 28:a23b16555909 3 #define _TRACE_H_
hux 28:a23b16555909 4
hux 28:a23b16555909 5 #include <mbed.h>
hux 28:a23b16555909 6 #include "bricks/o.h"
hux 28:a23b16555909 7
hux 28:a23b16555909 8 void trace(O&o, int level, const char *msg); // trace a message
hux 28:a23b16555909 9 void trace(O&o, int level, const char*, int); // trace an int value
hux 28:a23b16555909 10
hux 28:a23b16555909 11 void traceln(O&o, int level, const char*msg); // trace with CR & LF
hux 28:a23b16555909 12
hux 28:a23b16555909 13 void verbose(O&o, int level = 9999); // setup verbose level
hux 28:a23b16555909 14
hux 28:a23b16555909 15 #endif // _TRACE_H_