⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbgcheck.h

📁 编译后直接运行的MP3播放器全部C语言源代码 一个包含FAT文件系统、系统引导 Boot、FLASH Driver等内容的
💻 H
字号:
#ifndef __DBGCHECK_H__#define __DBGCHECK_H__#include <stdbool.h>#ifdef DEBUG #ifndef SIMULATOR  /* check whether a function is inside the valid memory location */  #define IS_FUNCPTR(fp) ({/     extern char _text[];/     extern char _etext[];/     ((((char *)(fp)) >= _text) && (((char *)(fp)) < _etext)/  }) #else  /* check whether a function is inside the valid memory location */  #define IS_FUNCPTR(fp) (((char*)(fp)) != NULL) #endif#else /* check whether a function is inside the valid memory location */ #define IS_FUNCPRT (fp) true#endif#endif // #ifndef __DBGCHECK_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -