Browse Source

删除 'zf_assert.c'

Yun_Lib_Share 1 năm trước cách đây
mục cha
commit
fa2311145a
1 tập tin đã thay đổi với 0 bổ sung34 xóa
  1. 0 34
      zf_assert.c

+ 0 - 34
zf_assert.c

@@ -1,34 +0,0 @@
-/**
-  *****************************************************************************
-  * @file    zf_assert.c
-  * @author  Zorb
-  * @version V1.0.0
-  * @date    2018-06-28
-  * @brief   断言的实现
-  *****************************************************************************
-  * @history
-  *
-  * 1. Date:2018-06-28
-  *    Author:Zorb
-  *    Modification:建立文件
-  *
-  *****************************************************************************
-  */
-
-#include "zf_assert.h"
-#include "zf_debug.h"
-
-/******************************************************************************
- * 描述  :断言产生时的处理
- * 参数  :(in)-pFileName 文件名
- *         (in)-line 行数
- * 返回  :无
-******************************************************************************/
-void ZF_assertHandle(uint8_t *pFileName, int line)
-{
-    ZF_DEBUG(LOG_E, "file:%s line:%d:asserted\r\n", pFileName, line);
-    
-    while (1);
-}
-
-/******************************** END OF FILE ********************************/