user_app.c 403 B

123456789101112131415161718192021222324252627282930
  1. #include "io_app.h"
  2. #include "variable.h"
  3. #include "user_app.h"
  4. #include "global.h"
  5. /**
  6. * 用户程序初始化
  7. *
  8. * @author lxz (2019/6/12/鍛ㄤ笁)
  9. *
  10. * @param void
  11. */
  12. void user_app_init(void)
  13. {
  14. axis_app_init();
  15. }
  16. /**
  17. * 用户应用程序运行
  18. *
  19. * @author lxz (2019/6/12/鍛ㄤ笁)
  20. *
  21. * @param void
  22. */
  23. void user_app_run(void)
  24. {
  25. axis_app_run();
  26. // extend_master_run();
  27. }