/*******************************************************************************
|
* File Name : DBG.h
|
* Description :
|
* Created on : 2018Äê7ÔÂ23ÈÕ
|
* Author : ¶Å¼ü
|
*******************************************************************************/
|
|
#ifndef FML_DBG_H_
|
#define FML_DBG_H_
|
/*******************************************************************************
|
* Include Files *
|
*******************************************************************************/
|
#include "HIDO_TypeDef.h"
|
|
/*******************************************************************************
|
* Macro *
|
*******************************************************************************/
|
#define DBG_FLAG_OFF 0
|
#define DBG_FLAG_ON 1
|
|
/*******************************************************************************
|
* Type Definition *
|
*******************************************************************************/
|
|
/*******************************************************************************
|
* Global Function *
|
*******************************************************************************/
|
HIDO_VOID DBG_SetDebugFlag(HIDO_UINT8 _u8Flag);
|
HIDO_VOID DBG_Init(void);
|
|
#endif /* FML_DBG_H_ */
|