hdmi_time.h 528 B

12345678910111213141516171819
  1. #ifndef __HDMI_TIME_H__
  2. #define __HDMI_TIME_H__
  3. void HDMI_DelayMs(UINT32 x);
  4. void HDMI_DelayUs(UINT32 x);
  5. //------------------------------------------------------------------------------
  6. // Function: HDMI_GetSysTime
  7. // Description: Returns the current number of system ticks since we started (unit:1ms)
  8. // Parameters: None
  9. // Returns: the current number of system ticks since we started (unit:1ms)
  10. //------------------------------------------------------------------------------
  11. UINT32 HDMI_GetSysTime(void);
  12. #endif