Fork of my original MQTTGateway

Dependencies:   mbed-http

Committer:
vpcola
Date:
Sat Apr 08 14:43:14 2017 +0000
Revision:
0:a1734fe1ec4b
Initial commit

Who changed what in which revision?

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