Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: DS130x_I2CApp MCP41xxxApp FM24Vxx_I2CApp MCP320xApp ... more
Revision 0:311a0646b95a, committed 2010-11-22
- Comitter:
- Yann
- Date:
- Mon Nov 22 08:02:40 2010 +0000
- Child:
- 1:fbb7a9674868
- Commit message:
- V0.0.1
Changed in this revision
| Debug.cpp | Show annotated file Show diff for this revision Revisions of this file |
| Debug.h | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Debug.cpp Mon Nov 22 08:02:40 2010 +0000
@@ -0,0 +1,21 @@
+#include <cstdarg>
+#include "Debug.h"
+
+#ifdef __DEBUG
+
+void DebugHelper::Debug(const char* p_format, ...) {
+ va_list argp;
+
+ va_start(argp, p_format);
+ vprintf(p_format, argp);
+ va_end(argp);
+}
+
+void DebugHelper::BreakPoint(const char* p_file, int p_line) {
+ printf("Stop in %s at line %d\r\n", p_file, p_line);
+ fflush(stdout);
+ getchar();
+ fflush(stdin);
+}
+
+#endif // __DEBUG
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Debug.h Mon Nov 22 08:02:40 2010 +0000
@@ -0,0 +1,144 @@
+/* mbed Debug library used by all my developed program
+ * Copyright (c) 2010 ygarcia
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+#if !defined(__DEBUG_H__)
+#define __DEBUG_H__
+
+#include "mbed.h"
+
+/** The steps below describe how to use this library:
+ * 1. Import this library to your project 'As file', because you will need to modify this file as described in step 2
+ * 2. Edit this library
+ * 3. Remove comment from line 57 (search for '//#define __DEBUG' in this file) to get the DEBUG macro defimed properly. By default, __DEBUG flahg is undef
+ * 4. Rebuild this library and use the debug macro as decribe in sample code
+ *
+ * IMPORTANT: If you modify this libray, please keep this comment up to date for future users
+ *
+ * Please refer to handbook (http://mbed.org/handbook/Debugging) for mbed Debugging support
+ *
+ * @code
+ * #include "Debug.h" // This header alway includes mbed.h file
+ *
+ * DigitalOut myled(LED1);
+ *
+ * int main() {
+ * DEBUG_ENTER("main") // Log the entry of the C function 'main'
+ * int counter = 0;
+ * while(1) {
+ * DEBUG("In loop [%d]", counter++) // A sample message
+ * myled = 1;
+ * wait(0.2);
+ * myled = 0;
+ * wait(0.2);
+ * DEBUG_BREAK() // Wait for any key pressed to continue
+ * } // End of 'while' statement
+ * DEBUG_LEAVE("main, never reached") // Log the end of the C function 'main'
+ * }
+ * @endcode
+ */
+#undef __DEBUG //<!To deactivate debug message
+//#define __DEBUG //<!To activate debug message
+
+// Undefined DEBUG symbols to be sure to use mines
+#undef DEBUG_ENTER
+#undef DEBUG_LEAVE
+#undef DEBUG
+
+#ifdef __DEBUG
+
+/** This class implements debug functionalities based on USB console interface. V0.0.0.1
+ *
+ * Note that this class is based on Helper pattern
+ */
+class DebugHelper
+{
+public:
+ /** Log method
+ */
+ static void Debug(const char* format, ...);
+ /** Break point method based on getchar() C function
+ */
+ static void BreakPoint(const char* file, int line);
+}; // End of class DebugHelper
+
+/** Used to log function/method entry (>>)
+ *
+ * Note that \ for multiline macro is not supported yet
+ */
+#define DEBUG_ENTER(...) do { DebugHelper::Debug(">> "); DebugHelper::Debug(__VA_ARGS__); DebugHelper::Debug("\r\n"); } while(false);
+/** Used to log function end of function/method (<<)
+ *
+ * Note that \ for multiline macro is not supported yet
+ */
+#define DEBUG_LEAVE(...) do { DebugHelper::Debug("<< "); DebugHelper::Debug(__VA_ARGS__); DebugHelper::Debug("\r\n"); } while(false);
+/** Used to log a standard message
+ *
+ * Note that \ for multiline macro is not supported yet
+ */
+#define DEBUG(...) do { DebugHelper::Debug(__VA_ARGS__); DebugHelper::Debug("\r\n"); } while(false);
+/** Used to log an error message (??)
+ *
+ * Note that \ for multiline macro is not supported yet
+ */
+#define DEBUG_ERRPOR(...) do { DebugHelper::Debug("?? "); DebugHelper::Debug(__VA_ARGS__); DebugHelper::Debug("\r\n"); } while(false);
+/** Used to log a warning message (!!)
+ *
+ * Note that \ for multiline macro is not supported yet
+ */
+#define DEBUG_WARNING(...) do { DebugHelper::Debug("!! "); DebugHelper::Debug(__VA_ARGS__); DebugHelper::Debug("\r\n"); } while(false);
+
+/** Break point macro
+ */
+#define DEBUG_BREAK() DebugHelper::BreakPoint(__FILE__, __LINE__);
+
+/** Used to stop program on fatal error
+ */
+#define DEBUG_FATAL(cause) error(cause);
+
+#else // __DEBUG
+
+/** Undefine DEBUG macro, used when __DEBUG is undefined
+ */
+#define DEBUG_ENTER(...)
+/** Undefine DEBUG macro, used when __DEBUG is undefined
+ */
+#define DEBUG_LEAVE(...)
+/** Undefine DEBUG macro, used when __DEBUG is undefined
+ */
+#define DEBUG(...)
+/** Undefine DEBUG_ERRPOR macro, used when __DEBUG is undefined
+ */
+#define DEBUG_ERRPOR(...)
+/** Undefine DEBUG_WARNING macro, used when __DEBUG is undefined
+ */
+#define DEBUG_WARNING(...)
+
+/** Undefine DEBUG_BREAK macro, used when __DEBUG is undefined
+ */
+#define DEBUG_BREAK()
+
+/** Undefine DEBUG_FATAL macro, used when __DEBUG is undefined
+ */
+#define DEBUG_FATAL(cause)
+
+#endif // __DEBUG
+
+#endif // __DEBUG_H__