chen
2024-09-20 292ed46c6066d47289f1330b1c2bcc6d74761f95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*******************************************************************************
 * File Name         : Log.h
 * Description       :
 * Created on        : 2018Äê4ÔÂ26ÈÕ
 * Author            : ¶Å¼ü
 *******************************************************************************/
 
#ifndef APL_LOG_H_
#define APL_LOG_H_
/*******************************************************************************
 *                              Include Files                                  *
 *******************************************************************************/
#include "HIDO_TypeDef.h"
 
/*******************************************************************************
 *                                  Macro                                      *
 *******************************************************************************/
 
/*******************************************************************************
 *                             Type Definition                                 *
 *******************************************************************************/
 
/*******************************************************************************
 *                             Global Function                                 *
 *******************************************************************************/
HIDO_INT32 Log_Init(void);
HIDO_INT32 Log_Print(HIDO_BOOL _bAsc, HIDO_UINT32 _u32Cnt);
HIDO_INT32 Log_Clean(void);
/*******************************************************************************
 * Function Name     : Log_Upload
 * Description       :
 * Input             :
 * Output            :
 * Return            :
 * Author            : ¶Å¼ü
 * Modified Date:    : 2018Äê8ÔÂ2ÈÕ
 *******************************************************************************/
HIDO_INT32 Log_Upload(HIDO_CHAR *_pcUrl);
HIDO_INT32 Log_Front(void);
HIDO_INT32 Log_DelFront(void);
HIDO_INT32 Log_SetPrint(HIDO_BOOL _bPrint);
 
#endif /* APL_LOG_H_ */