Sign in

裴昌跃 / AGVkunshantaiguang · Files

Logo

GitLab

  • Back to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • AGVkunshantaiguang
  • 开山AGV程序
  • WorkCourse
  • WorkCourse.c
  • 初次提交
    995bc54d
    裴昌跃 authored
    2023-09-01 14:14:59 +0800  
    Browse Code »
WorkCourse.c 327 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#include "includes.h"
#include "hardware.h"
#include "all_value.h"




void WorkCourse_Pro(void)//»ñÈ¡¹¤×÷ģʽ
{
	GetWorkmode_Pro();
	
	switch(Workmode)
	{	
		case ManuMode:	
						ManualCourse_Pro();
						ActionCourse_Pro();
						break;
		case AutoMode:
						AutoCourse_Pro();
						ActionCourse_Pro();
						break;
	}
}