-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
153 lines (56 loc) · 2.36 KB
/
main.c
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#include "includes.h"
/*---------------------------------------------------------------------
函数: 主函数
目的: 整个函数的程序流:
图像后台采集-》图像中心线提取-》图像方向计算-� PID 速度方向输出
输入: 无
输出: 无
错误: 图像处理完了应该打开采样锁 ,不然主函数返回接着处理
---------------------------------------------------------------------*/
void main(void) {
stoped=0;
DisableInterrupts; /****系统初始化***/
System_init();
SampleLock=1;
ProcessLock=0;
EnableInterrupts;
SteerDirection=Direction_mid;
while(system_time<120); //先停止两秒
Motor_left=100;
Motor_right=100;
ThreshHold=0x80; //0x80
while(1) {
if(!SampleLock) { //如果没有在采样 则开始处理图像
ProcessLock=1;
// if(Sci_read()=='a')
// print_init_map();
// print_binarymap();
// ThreshHold=AutoThresh(StartLine);
ImageCenterCalculate(); //进行图像中心线提取
// if(Sci_read()=='a')
// print_init_map();
// print_binarymap();
// while(Sci_read()!='a'); //打印图像 返回实际处理
if(system_time>500) //检测起跑线 10s 之后
{
AutoStop();
}
if(system_time>200)
VoidBreak();
// if(system_time>200)
// SystemStop();
ImageProcess();
AutoControl();
/*
Sci_write(0x00);
Sci_write(CurrentSpeed_right);
Sci_write(0xff);
Sci_write(CurrentSpeed_left);
*/
ProcessLock=0; //关闭处理锁
SampleLock=1; //打开采样锁
}
// ImageProcess(); //根据图像提取中心线后的图像 计算 角度 和 速度
// AutoControl(); //根据中心线处理后得到 角度 和 期望速度值进行 PID 控制
}// end of while(1);
}