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