hv_vos_Comm.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /** @file vos.h
  2. * @brief include all vos headers
  3. */
  4. /**
  5. * @file hv_vos.h
  6. * @brief vos header for all include.
  7. * @details anyware
  8. * @author HiView SoC Software Team
  9. * @version 1.0.0
  10. * @date 2022-09-05
  11. * @copyright Copyright(c),2022-9, Hiview Software. All rights reserved.
  12. */
  13. #ifndef _HV_VOS_H
  14. #define _HV_VOS_H
  15. #include "hv_vos_Types.h"
  16. #include "hv_vos_Macro.h"
  17. #include "hv_vos_Endian.h"
  18. #include "hv_vos_Assert.h"
  19. #include "hv_vos_Log.h"
  20. #include "hv_comm_DataType.h"
  21. #include "hv_comm_Log.h"
  22. #include "hv_vos_Time.h"
  23. #include "hv_vos_Memory.h"
  24. #include "hv_vos_Irq.h"
  25. #include "hv_vos_Conn.h"
  26. #include "hv_vos_Stdio.h"
  27. #include "hv_vos_Printf.h"
  28. #include "hv_vos_Cache.h"
  29. #include "hv_vos_Vsscanf.h"
  30. /* multithread function header files, 多线程相关头文件,当前默认全打开 */
  31. #include "hv_vos_Task.h"
  32. #include "hv_vos_Mutex.h"
  33. #include "hv_vos_Queue.h"
  34. #include "hv_vos_Semaphore.h"
  35. #include "hv_vos_Timer.h"
  36. #include "hv_vos_EventGroup.h"
  37. /* initialize VOS */
  38. void Hv_Vos_Init(void);
  39. /* De-initialize VOS */
  40. void Hv_Vos_Cleanup(void);
  41. #endif