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

📄 updown_util.h

📁 RT9S12 target document
💻 H
字号:
/* $Revision: 1.1.6.1 $ */
#ifndef __UPDOWN_UTIL__
#define __UPDOWN_UTIL__

/*
 * Copyright 1994-2002 The MathWorks, Inc.
 *
 * File    : updown_util.h
 * Abstract:
 *  'assert' support for external MATLAB files.
 */

/*
 * Set ASSERTS_ON to 1 turn asserts on, 0 otherwise.
 */
#define ASSERTS_ON (0)

/*------------------------------------------------------------------------------
 * Do not modify below this line.
 *----------------------------------------------------------------------------*/
#if ASSERTS_ON
#include <assert.h>
#else
#define assert(dum) /* do nothing */
#endif

#ifdef VERBOSE
# define PRINT_VERBOSE(args) (void)printf args
#elif DEBUG_MSG_LVL > 0
#define PRINT_VERBOSE(args) SCI0_OutString( args )
#else
#define PRINT_VERBOSE(args) /* do nothing */
#endif

#endif /* __UPDOWN_UTIL__ */

⌨️ 快捷键说明

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