hattori&ide

Dependencies:   mbed

Committer:
hattori_atsushi
Date:
Sun Dec 18 08:16:01 2022 +0000
Revision:
0:f77369cabd75
hattori

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hattori_atsushi 0:f77369cabd75 1
hattori_atsushi 0:f77369cabd75 2 /*
hattori_atsushi 0:f77369cabd75 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
hattori_atsushi 0:f77369cabd75 4
hattori_atsushi 0:f77369cabd75 5 Permission is hereby granted, free of charge, to any person obtaining a copy
hattori_atsushi 0:f77369cabd75 6 of this software and associated documentation files (the "Software"), to deal
hattori_atsushi 0:f77369cabd75 7 in the Software without restriction, including without limitation the rights
hattori_atsushi 0:f77369cabd75 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
hattori_atsushi 0:f77369cabd75 9 copies of the Software, and to permit persons to whom the Software is
hattori_atsushi 0:f77369cabd75 10 furnished to do so, subject to the following conditions:
hattori_atsushi 0:f77369cabd75 11
hattori_atsushi 0:f77369cabd75 12 The above copyright notice and this permission notice shall be included in
hattori_atsushi 0:f77369cabd75 13 all copies or substantial portions of the Software.
hattori_atsushi 0:f77369cabd75 14
hattori_atsushi 0:f77369cabd75 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
hattori_atsushi 0:f77369cabd75 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
hattori_atsushi 0:f77369cabd75 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
hattori_atsushi 0:f77369cabd75 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
hattori_atsushi 0:f77369cabd75 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
hattori_atsushi 0:f77369cabd75 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
hattori_atsushi 0:f77369cabd75 21 THE SOFTWARE.
hattori_atsushi 0:f77369cabd75 22 */
hattori_atsushi 0:f77369cabd75 23
hattori_atsushi 0:f77369cabd75 24 /** \file
hattori_atsushi 0:f77369cabd75 25 Debugging helpers header file
hattori_atsushi 0:f77369cabd75 26 */
hattori_atsushi 0:f77369cabd75 27
hattori_atsushi 0:f77369cabd75 28 //#ifdef DBG_H
hattori_atsushi 0:f77369cabd75 29 //#define DBG_H
hattori_atsushi 0:f77369cabd75 30
hattori_atsushi 0:f77369cabd75 31 #ifdef __LWIP_DEBUG
hattori_atsushi 0:f77369cabd75 32 #define __DEBUG
hattori_atsushi 0:f77369cabd75 33 #endif
hattori_atsushi 0:f77369cabd75 34
hattori_atsushi 0:f77369cabd75 35 /*!
hattori_atsushi 0:f77369cabd75 36 \def __DEBUG
hattori_atsushi 0:f77369cabd75 37 To define to enable debugging in one file
hattori_atsushi 0:f77369cabd75 38 */
hattori_atsushi 0:f77369cabd75 39
hattori_atsushi 0:f77369cabd75 40 #ifdef __DEBUG
hattori_atsushi 0:f77369cabd75 41
hattori_atsushi 0:f77369cabd75 42 #ifndef __DEBUGSTREAM
hattori_atsushi 0:f77369cabd75 43 #define __DEBUGSTREAM
hattori_atsushi 0:f77369cabd75 44
hattori_atsushi 0:f77369cabd75 45
hattori_atsushi 0:f77369cabd75 46 class DebugStream
hattori_atsushi 0:f77369cabd75 47 {
hattori_atsushi 0:f77369cabd75 48 public:
hattori_atsushi 0:f77369cabd75 49 static void debug(const char* format, ...);
hattori_atsushi 0:f77369cabd75 50 static void release();
hattori_atsushi 0:f77369cabd75 51 static void breakPoint(const char* file, int line);
hattori_atsushi 0:f77369cabd75 52 private:
hattori_atsushi 0:f77369cabd75 53
hattori_atsushi 0:f77369cabd75 54 };
hattori_atsushi 0:f77369cabd75 55
hattori_atsushi 0:f77369cabd75 56 #undef DBG
hattori_atsushi 0:f77369cabd75 57 #undef DBG_END
hattori_atsushi 0:f77369cabd75 58 #undef BREAK
hattori_atsushi 0:f77369cabd75 59
hattori_atsushi 0:f77369cabd75 60 ///Debug output (if enabled), same syntax as printf, with heading info
hattori_atsushi 0:f77369cabd75 61 #define DBG(...) do{ DebugStream::debug("[%s:%s@%d] ", __FILE__, __FUNCTION__, __LINE__); DebugStream::debug(__VA_ARGS__); } while(0);
hattori_atsushi 0:f77369cabd75 62
hattori_atsushi 0:f77369cabd75 63 ///Debug output (if enabled), same syntax as printf, no heading info
hattori_atsushi 0:f77369cabd75 64 #define DBGL(...) do{ DebugStream::debug(__VA_ARGS__); } while(0);
hattori_atsushi 0:f77369cabd75 65 #define DBG_END DebugStream::release
hattori_atsushi 0:f77369cabd75 66
hattori_atsushi 0:f77369cabd75 67 ///Break point usin serial debug interface (if debug enbaled)
hattori_atsushi 0:f77369cabd75 68 #define BREAK() DebugStream::breakPoint(__FILE__, __LINE__)
hattori_atsushi 0:f77369cabd75 69 #endif
hattori_atsushi 0:f77369cabd75 70
hattori_atsushi 0:f77369cabd75 71 #else
hattori_atsushi 0:f77369cabd75 72 #undef DBG
hattori_atsushi 0:f77369cabd75 73 #undef DBG_END
hattori_atsushi 0:f77369cabd75 74 #undef BREAK
hattori_atsushi 0:f77369cabd75 75 #define DBG(...)
hattori_atsushi 0:f77369cabd75 76 #define DBG_END()
hattori_atsushi 0:f77369cabd75 77 #define BREAK()
hattori_atsushi 0:f77369cabd75 78 #endif
hattori_atsushi 0:f77369cabd75 79
hattori_atsushi 0:f77369cabd75 80 #ifdef __LWIP_DEBUG
hattori_atsushi 0:f77369cabd75 81 #ifndef __SNPRINTF
hattori_atsushi 0:f77369cabd75 82 #define __SNPRINTF
hattori_atsushi 0:f77369cabd75 83 #include "mbed.h"
hattori_atsushi 0:f77369cabd75 84
hattori_atsushi 0:f77369cabd75 85 //int snprintf(char *str, int size, const char *format, ...);
hattori_atsushi 0:f77369cabd75 86 #endif
hattori_atsushi 0:f77369cabd75 87 #endif
hattori_atsushi 0:f77369cabd75 88
hattori_atsushi 0:f77369cabd75 89 #ifdef __LWIP_DEBUG
hattori_atsushi 0:f77369cabd75 90 #undef __DEBUG
hattori_atsushi 0:f77369cabd75 91 #endif
hattori_atsushi 0:f77369cabd75 92
hattori_atsushi 0:f77369cabd75 93 //#endif
hattori_atsushi 0:f77369cabd75 94