summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/include/dbgcheck.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/firmware/include/dbgcheck.h b/firmware/include/dbgcheck.h
new file mode 100644
index 0000000000..e1f7aefbdb
--- /dev/null
+++ b/firmware/include/dbgcheck.h
@@ -0,0 +1,24 @@
1#ifndef __DBGCHECK_H__
2#define __DBGCHECK_H__
3
4#include <stdbool.h>
5
6#ifdef DEBUG
7 #ifndef SIMULATOR
8 /* check whether a function is inside the valid memory location */
9 #define IS_FUNCPTR(fp) ({/
10 extern char _text[];/
11 extern char _etext[];/
12 ((((char *)(fp)) >= _text) && (((char *)(fp)) < _etext)/
13 })
14 #else
15 /* check whether a function is inside the valid memory location */
16 #define IS_FUNCPTR(fp) (((char*)(fp)) != NULL)
17 #endif
18#else
19 /* check whether a function is inside the valid memory location */
20 #define IS_FUNCPRT (fp) true
21#endif
22
23
24#endif // #ifndef __DBGCHECK_H__ \ No newline at end of file