/*******************************************************************************
|
* File Name : Delay.h
|
* Description :
|
* Created on : 2019Äê8ÔÂ29ÈÕ
|
* Author : www.hido-studio.com
|
*******************************************************************************/
|
|
#ifndef HAL_DELAY_H_
|
#define HAL_DELAY_H_
|
/*******************************************************************************
|
* Include Files *
|
*******************************************************************************/
|
#include "HIDO_TypeDef.h"
|
|
/*******************************************************************************
|
* Macro *
|
*******************************************************************************/
|
|
/*******************************************************************************
|
* Type Definition *
|
*******************************************************************************/
|
|
/*******************************************************************************
|
* Global Function *
|
*******************************************************************************/
|
void Delay_Us(HIDO_UINT16 _u16Us);
|
void Delay_TimerRegister(HIDO_VOID *_pTimer);
|
HIDO_INT32 Delay_Init(void);
|
|
#endif /* HAL_DELAY_H_ */
|