LM3S的库函数源码

2019-03-24 13:21发布

LM3S的库函数的源码在编写的时候经常用到 ASSERT((ulBase == UART0_BASE) || (ulBase == UART1_BASE) |);其中ASSERT在库函数编写的时候为什么起到什么作用。表示一个判断的语句??在LM3S的书籍中并没有发现有给它的定义啊!谁知道能不能说一下。          此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
6条回答
David_Lee
2019-03-24 16:12
< :TI_MSP430_内容页_SA7 -->

原帖由 guozhiyang 于 2011-7-15 14:39 发表 LM3S的库函数的源码在编写的时候经常用到 ASSERT((ulBase == UART0_BASE) || (ulBase == UART1_BASE) |);其中ASSERT在库函数编写的时候为什么起到什么作用。表示一个判断的语句??在LM3S的书籍中并没有发现有 ...

 

函数原型在StellarisWare_for_EK-LM3S811driverlibdebug.h

 

#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.
//
//*****************************************************************************
#ifdef DEBUG
#define ASSERT(expr) {                                     
                         if(!(expr))                       
                         {                                 
                             __error__(__FILE__, __LINE__);
                         }                                 
                     }
#else
#define ASSERT(expr)
#endif

#endif // __DEBUG_H__

一周热门 更多>

相关问题

    相关文章