EZR

Dependencies:   CRC16 FreescaleIAP FreescaleWatchdog GGSProtocol LM75B PIMA Parameters PersistentCircularQueue SerialNumberV2COM mbed-dev-watchdog_2016_03_04

Fork of smartRamalKW by Equipe Firmware V2COM

Committer:
fprado
Date:
Thu Jun 16 18:55:57 2016 +0000
Revision:
35:78614a27b9e6
Parent:
22:b66e36356dd4
temporary snapshot

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tpadovani 22:b66e36356dd4 1 #ifndef DEBUG_H
tpadovani 22:b66e36356dd4 2 #define DEBUG_H
tpadovani 22:b66e36356dd4 3
tpadovani 22:b66e36356dd4 4 #include "settings.h"
tpadovani 22:b66e36356dd4 5
tpadovani 22:b66e36356dd4 6 #ifdef DEBUG_ENABLED
tpadovani 22:b66e36356dd4 7 # define DEBUG(x) x
tpadovani 22:b66e36356dd4 8 #else
tpadovani 22:b66e36356dd4 9 # define DEBUG(x)
tpadovani 22:b66e36356dd4 10 #endif
tpadovani 22:b66e36356dd4 11
tpadovani 22:b66e36356dd4 12 #endif