XBee modules

Dependencies:   DigiLogger

Fork of XBeeLib by Digi International Inc.

Committer:
spastor
Date:
Mon Jun 01 18:59:43 2015 +0200
Revision:
4:629712865107
Parent:
2:2ee1b6d51df2
Automatic upload

Who changed what in which revision?

UserRevisionLine numberNew contents of line
spastor 0:fcaad0dfa051 1 /**
spastor 0:fcaad0dfa051 2 * Copyright (c) 2015 Digi International Inc.,
spastor 0:fcaad0dfa051 3 * All rights not expressly granted are reserved.
spastor 0:fcaad0dfa051 4 *
spastor 0:fcaad0dfa051 5 * This Source Code Form is subject to the terms of the Mozilla Public
spastor 0:fcaad0dfa051 6 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
spastor 0:fcaad0dfa051 7 * You can obtain one at http://mozilla.org/MPL/2.0/.
spastor 0:fcaad0dfa051 8 *
spastor 0:fcaad0dfa051 9 * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343
spastor 0:fcaad0dfa051 10 * =======================================================================
spastor 0:fcaad0dfa051 11 */
spastor 4:629712865107 12
spastor 0:fcaad0dfa051 13 #if !defined(__DEBUG_H_)
spastor 0:fcaad0dfa051 14 #define __DEBUG_H_
spastor 0:fcaad0dfa051 15
spastor 0:fcaad0dfa051 16 #include "config.h"
spastor 0:fcaad0dfa051 17
spastor 0:fcaad0dfa051 18 #if defined(ENABLE_LOGGING)
spastor 0:fcaad0dfa051 19
spastor 0:fcaad0dfa051 20 #include "DigiLogger.h"
spastor 0:fcaad0dfa051 21
spastor 0:fcaad0dfa051 22 #define digi_log(...) DigiLog::DigiLogger::log_format(__VA_ARGS__);
spastor 0:fcaad0dfa051 23 #else
spastor 0:fcaad0dfa051 24 #define digi_log(...) do {} while(0)
spastor 0:fcaad0dfa051 25 #endif
spastor 0:fcaad0dfa051 26
spastor 0:fcaad0dfa051 27 #if defined(ENABLE_ASSERTIONS)
spastor 0:fcaad0dfa051 28 #include "mbed.h"
hbujanda 2:2ee1b6d51df2 29 #if !(defined assert)
spastor 0:fcaad0dfa051 30 #define assert(expr) if (!(expr)) { \
spastor 0:fcaad0dfa051 31 digi_log(LogLevelNone, "Assertion failed: %s, file %s, line %d\n", \
spastor 0:fcaad0dfa051 32 #expr, __FILE__, __LINE__); \
spastor 0:fcaad0dfa051 33 mbed_die(); \
spastor 0:fcaad0dfa051 34 }
hbujanda 2:2ee1b6d51df2 35 #endif
spastor 0:fcaad0dfa051 36 #else
spastor 0:fcaad0dfa051 37 #define assert(expr)
spastor 0:fcaad0dfa051 38 #endif
spastor 0:fcaad0dfa051 39
spastor 0:fcaad0dfa051 40 #endif /* __DEBUG_H_ */