| /**
|
| *
|
| * @file zcat.h
|
| * @brief
|
| * This file is part of ZCAT.
|
| * ZCAT¹¤¾ßÊý¾ÝÀàÐͶ¨Òå¼°ZCAT½Ó¿Ú˵Ã÷
|
| *
|
| * @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
|
| * ---------------------------------------------------------------------------
|
| * 2013/01/21 1.0 lu.xieji Create file
|
| * 2019/02/02 1.1 jiang.fenglin ÐÞ¸Ä×¢ÊÍ·½Ê½Îªdoxygen
|
| * ---------------------------------------------------------------------------
|
| *
|
| *
|
| */
|
|
|
|
|
| #ifndef ZCAT_H
|
| #define ZCAT_H
|
|
|
| #ifdef __cplusplus
|
| extern "C"
|
| {
|
| #endif
|
|
|
|
|
| #include "oss_api.h" // ²Ù×÷ϵͳÊÊÅäOSA
|
| #include "ram_config.h"
|
| #include "tools.h"
|
| #include "commgt_api.h"
|
| #include "CpTrace.h"
|
| #ifdef _OPTIMIZED_DRIVER
|
| #include "drvs_serial_device.h" // Çý¶¯
|
| #endif
|
| #include "zcat_ue_pc_int.h"
|
|
|
|
|
| /**
|
| * @brief »ñÈ¡apÓëcpͬ²½Ê±µÄʱ¼äºÍtick
|
| * @param[in] void
|
| * @return 0 on success, errno otherwise
|
| * @note
|
| * @see
|
| */
|
| UINT32 zCatAgt_GetTime(VOID);
|
|
|
| #ifdef __cplusplus
|
| }
|
| #endif
|
|
|
| #endif
|
|
|