lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | /**
|
| 2 | *
|
| 3 | * @file zcat.h
|
| 4 | * @brief
|
| 5 | * This file is part of ZCAT.
|
| 6 | * ZCAT¹¤¾ßÊý¾ÝÀàÐͶ¨Òå¼°ZCAT½Ó¿Ú˵Ã÷
|
| 7 | *
|
| 8 | * @details
|
| 9 | * @author Tools Team.
|
| 10 | * @email
|
| 11 | * @copyright Copyright (C) 2013 Sanechips Technology Co., Ltd.
|
| 12 | * @warning
|
| 13 | * @date 2019/02/02
|
| 14 | * @version 1.1
|
| 15 | * @pre
|
| 16 | * @post
|
| 17 | *
|
| 18 | * @par
|
| 19 | * Change History :
|
| 20 | * ---------------------------------------------------------------------------
|
| 21 | * date version author description
|
| 22 | * ---------------------------------------------------------------------------
|
| 23 | * 2013/01/21 1.0 lu.xieji Create file
|
| 24 | * 2019/02/02 1.1 jiang.fenglin ÐÞ¸Ä×¢ÊÍ·½Ê½Îªdoxygen
|
| 25 | * ---------------------------------------------------------------------------
|
| 26 | *
|
| 27 | *
|
| 28 | */
|
| 29 |
|
| 30 |
|
| 31 | #ifndef ZCAT_H
|
| 32 | #define ZCAT_H
|
| 33 |
|
| 34 | #ifdef __cplusplus
|
| 35 | extern "C"
|
| 36 | {
|
| 37 | #endif
|
| 38 |
|
| 39 |
|
| 40 | #include "oss_api.h" // ²Ù×÷ϵͳÊÊÅäOSA
|
| 41 | #include "ram_config.h"
|
| 42 | #include "tools.h"
|
| 43 | #include "commgt_api.h"
|
| 44 | #include "CpTrace.h"
|
| 45 | #ifdef _OPTIMIZED_DRIVER
|
| 46 | #include "drvs_serial_device.h" // Çý¶¯
|
| 47 | #endif
|
| 48 | #include "zcat_ue_pc_int.h"
|
| 49 |
|
| 50 |
|
| 51 | /**
|
| 52 | * @brief »ñÈ¡apÓëcpͬ²½Ê±µÄʱ¼äºÍtick
|
| 53 | * @param[in] void
|
| 54 | * @return 0 on success, errno otherwise
|
| 55 | * @note
|
| 56 | * @see
|
| 57 | */
|
| 58 | UINT32 zCatAgt_GetTime(VOID);
|
| 59 |
|
| 60 | #ifdef __cplusplus
|
| 61 | }
|
| 62 | #endif
|
| 63 |
|
| 64 | #endif
|
| 65 |
|