hv_vos_Time.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * @file hv_vos_Time.h
  3. * @brief Header file of time.
  4. *
  5. * @verbatim
  6. * ==============================================================================
  7. * ##### How to use #####
  8. * ==============================================================================
  9. * (+) Use ()
  10. *
  11. * @endverbatim
  12. * @author HiView SoC Software Team
  13. * @version 1.0.0
  14. * @date 2023-03-01
  15. */
  16. #ifndef _HV_VOS_TIME_H
  17. #define _HV_VOS_TIME_H
  18. #include "hv_vos_Types.h"
  19. VOS_EXTERN_C_BEGIN
  20. /** @defgroup VOS_TIME VOS_TIME
  21. * VOS time related functions
  22. * @{
  23. */
  24. /** @brief Get current tick count
  25. * @return tick count
  26. */
  27. UINT64 Hv_Vos_GetTick();
  28. /** @brief sleep for a while
  29. * @param milliseconds sleeping milliseconds
  30. */
  31. void Hv_Vos_MSleep(UINT32 uiMilliseconds);
  32. void Hv_Vos_MSleepUntil(UINT32 uiMilliseconds);
  33. UINT64 Hv_Vos_GetTick(void);
  34. UINT64 Hv_Vos_MsToTick(UINT32 uiMilliseconds);
  35. /* Init VOS time */
  36. void Hv_Vos_InitTime(void);
  37. /* De-init VOS time */
  38. void Hv_Vos_CleanupTime(void);
  39. /* Delay us to hold the CPU; us should not larger than 1000! */
  40. void Hv_Vos_Delayus(UINT32 us);
  41. /** @} */
  42. VOS_EXTERN_C_END
  43. #endif