| /**
|
| *
|
| * @file zcat_print.h
|
| * @brief
|
| * This file is part of ZCAT.
|
| * ZCAT¹¤¾ß MODEM PRINTÄ£¿éºÍµÈ¼¶¶¨Òå
|
| *
|
| * @details
|
| * @author Tools Team.
|
| * @email
|
| * @copyright Copyright (C) 2013 Sanechips Technology Co., Ltd.
|
| * @warning
|
| * @date 2019/02/02
|
| * @version 1.1
|
| * @pre
|
| * @post
|
| *
|
| * @par
|
| * Change History :
|
| * ---------------------------------------------------------------------------
|
| * date version author description
|
| * ---------------------------------------------------------------------------
|
| * 2012/12/27 1.0 lu.xieji Create file
|
| * 2019/02/02 1.1 jiang.fenglin ÐÞ¸Ä×¢ÊÍ·½Ê½Îªdoxygen
|
| * ---------------------------------------------------------------------------
|
| *
|
| *
|
| */
|
|
|
| #ifndef ZCAT_PRINT_H
|
| #define ZCAT_PRINT_H
|
|
|
| #ifdef __cplusplus
|
| extern "C"
|
| {
|
| #endif
|
|
|
| /************************************************************************/
|
| /* Êý¾ÝÀàÐÍ */
|
| /************************************************************************/
|
| // ÁÙʱ£¬È¥³ý±àÒ뾯¸æ
|
| #undef PRINT_LEVEL_FORBID
|
| #undef PRINT_LEVEL_ABNORMAL
|
| #undef PRINT_LEVEL_SEVERE
|
| #undef PRINT_LEVEL_NORMAL
|
| #undef PRINT_LEVEL_DEBUG
|
| ////////////////////////////////////
|
|
|
| #define PRINT_LEVEL_FORBID (0x00) /* ²»´òÓ¡ */
|
| #define PRINT_LEVEL_DEBUG (0x01) /* µ÷ÊÔ¼¶±ð */
|
| #define PRINT_LEVEL_NORMAL (0x02) /* ÆÕͨ¼¶±ð */
|
| #define PRINT_LEVEL_SEVERE (0x04) /* ÑÏÖØ¼¶±ð */
|
| #define PRINT_LEVEL_ABNORMAL (0x08) /* Òì³£¼¶±ð */
|
|
|
| typedef struct
|
| {
|
| UINT8 mod;
|
| UINT8 level;
|
| UINT16 len;
|
| } T_ZCAT_PRINT_HEADER;
|
| /************************************************************************/
|
| /* ½Ó¿ÚÔÐÍ */
|
| /************************************************************************/
|
|
|
|
|
| #ifdef __cplusplus
|
| }
|
| #endif
|
|
|
| #endif // ZCAT_PRINT_H
|
|
|