#ifndef __HDMI_TIME_H__ #define __HDMI_TIME_H__ void HDMI_DelayMs(UINT32 x); void HDMI_DelayUs(UINT32 x); //------------------------------------------------------------------------------ // Function: HDMI_GetSysTime // Description: Returns the current number of system ticks since we started (unit:1ms) // Parameters: None // Returns: the current number of system ticks since we started (unit:1ms) //------------------------------------------------------------------------------ UINT32 HDMI_GetSysTime(void); #endif