打印
[ZLG-MCU]

LM3S函数库debug.h里面__error__是哪里的函数?

[复制链接]
1769|1
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
ATmega32L|  楼主 | 2008-3-3 18:57 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

LM3S函数库debug.h里面__error__是哪里的函数?


#ifndef __DEBUG_H__
#define __DEBUG_H__

//*****************************************************************************
//
// Prototype for the function that is called when an invalid argument is passed
// to an API.  This is only used when doing a DEBUG build.
//
//*****************************************************************************
extern void __error__(char *pcFilename, unsigned long ulLine);

//*****************************************************************************
//
// The ASSERT macro, which does the actual assertion checking.  Typically, this
// will be for procedure arguments.
//
//*****************************************************************************

#define ASSERT(expr) {                                      
                         if(!(expr))                        
                         {                                  
                             __error__(__FILE__, __LINE__); 
                         }                                  
                     }

#endif // __DEBUG_H__

相关帖子

沙发
hotpower| | 2008-3-6 15:36 | 只看该作者

问题多多~~~

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

144

主题

376

帖子

0

粉丝