user_app.h 350 B

12345678910111213141516171819
  1. #ifndef __USER_APP_H__
  2. #define __USER_APP_H__
  3. #include "variable.h"
  4. #include "io_app.h"
  5. #include "board.h"
  6. void user_app_init(void);
  7. void user_app_run(void);
  8. void manual_action(void); //手动测试动作
  9. void auto_action(void); //自动动作
  10. void reset_action(void); //复位动作
  11. void emgstop_action(void); //急停动作
  12. #endif