aic_init.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /******************************************************************************/
  2. /* */
  3. /* Copyright 2023 by AICXTEK TECHNOLOGIES CO.,LTD. All rights reserved. */
  4. /* */
  5. /******************************************************************************/
  6. /**
  7. * DESCRIPTION
  8. *
  9. * This file defines the aicxtek init Interface.
  10. */
  11. #ifndef __AIC_INIT_H__
  12. #define __AIC_INIT_H__
  13. #include <stdint.h>
  14. #include "aic_tele.h"
  15. #include "aic_srv_at.h"
  16. /*
  17. * aic_cmux_init
  18. * Init cmux module.
  19. */
  20. int aic_cmux_init(void);
  21. /*
  22. * aic_ctrl_init
  23. * Init control module.
  24. */
  25. int aic_ctrl_init(void);
  26. /*
  27. * aic_net_mgr_init
  28. * Init net mangenet module.
  29. */
  30. void aic_net_mgr_init(void);
  31. /*
  32. * aic_common_poweroff_init
  33. * Init common poweroff module.
  34. */
  35. int32_t aic_common_poweroff_init(void);
  36. /*
  37. * aic_cmux_init_task
  38. * create task after init cmux.
  39. */
  40. int aic_cmux_init_task(void);
  41. /*
  42. *********************************************************************
  43. * Description: aicxtek 初始化接口
  44. * Arguments : void
  45. * Return : No return
  46. * Note(s) : aicxtek初始化接口,必须在系统boot流程中调用,例如,在
  47. * 平台module init时调用。
  48. *********************************************************************
  49. */
  50. static inline void aic_init(void)
  51. {
  52. aic_cmux_init();
  53. aic_ctrl_init();
  54. aic_net_mgr_init();
  55. aic_common_poweroff_init();
  56. aic_tele_init();
  57. aic_cmux_init_task();
  58. aic_srv_at_init();
  59. }
  60. #endif /* __AIC_INIT_H__ */