main.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * @file main.c
  3. * @brief main c file.This is where it all starts.
  4. * @details This file provides the following functions: \n
  5. * (1) Initialization and de-initialization functions \n
  6. * (2) Start and stop functions \n
  7. * (3) Feed functions \n
  8. *
  9. * @author HiView SoC Software Team
  10. * @version 1.0.0
  11. * @date 2022-08-25
  12. * @copyright Copyright(c),2022-8, Hiview Software. All rights reserved.
  13. * @par History:
  14. * <table>
  15. * <tr><th>Author <th>Date <th>Change Description
  16. * <tr><td>HiView SoC Software Team <td>2022-08-25 <td>init
  17. * </table>
  18. */
  19. #include "hv_comm_Assert.h"
  20. #include "hv_mw_SystemManager.h"
  21. INT32 main( VOID )
  22. {
  23. /*Creat the RunTime task,SystemManager and Urgent and OSD task and so on*/
  24. Hv_Mw_System_TaskCreate();
  25. /*Create the RunTime message queue*/
  26. Hv_Mw_System_AllMessageQueueCreate();
  27. /*Initializes hardware and software modules*/
  28. HV_ASSERT_SUCCESS(Hv_Mw_System_Init());
  29. /*start task Scheduler and enable gloable interupt*/
  30. Hv_Mw_System_TaskAndIrqEnable();
  31. for ( ;; );
  32. /*Don't expect to reach here*/
  33. return 0;
  34. }