123456789101112131415161718192021222324252627282930 |
- #include "io_app.h"
- #include "variable.h"
- #include "user_app.h"
- #include "global.h"
- /**
- * 用户程序初始化
- *
- * @author lxz (2019/6/12/鍛ㄤ笁)
- *
- * @param void
- */
- void user_app_init(void)
- {
- axis_app_init();
- }
- /**
- * 用户应用程序运行
- *
- * @author lxz (2019/6/12/鍛ㄤ笁)
- *
- * @param void
- */
- void user_app_run(void)
- {
- axis_app_run();
- // extend_master_run();
- }
|