-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase_function.h
197 lines (181 loc) · 4.33 KB
/
base_function.h
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/**
* This file include the basic functions used for 4WD Car designed by HuiJing
*
* Jump cap requestment:
* Moto: Use jump caps on all the pins of J6-1 and J6-2, release jump caps on pins of J6-3.
* Digitial tube: Use jump cap on J13.
* Infrared ray senser: Use jump caps on J5.
*
* @platform HJ-4WD/HJ-E/HL-1 + Keil U4 + STC89C52(11.0592Hz)
* @author H.Zhou
* @date 2015.12.20
*/
#include <base_defination.h>
#include <AT89X52.H>
#ifndef _Base_Functions_
#define _Base_Functions_
/**
* The initial function of timer and interrupt
* Gear pwm timer use timer 0
* Moto pwm timer use timer 2
* Digitial tube use timer 2
* Pwm timer create the pwm for moto, gear and digitial tube
* Ultrasonic detector use timer 1 and int 1
**/
void init_PWM_timer() {
//Initial of T0/T1
TMOD ^= 0x92;
IE ^= 0xA6;
IP ^=0x02;
TH0 = 164;
TL0 = 164;
TH1 = 0;
TL1 = 0;
TCON ^= 0x54;
//Initial of T2
T2MOD = 0x00;
T2CON = 0x04;
RCAP2H = TH2 = 0xF8;
RCAP2L = TL2 = 0xCD;
}
/**
* The initial function of pins
**/
void init_pins() {
//Moto initialize
P1_0 = P1_2 = P1_4 = P1_6 = 1;
//Digitial tube initialize
P2_0 = P2_1 = P2_2 = P2_3 = 1;
//Gear initialize
P2_7 = 0;
//Ultrasonic detector initialize
P2_5 = 0;
}
/**
* Dynamic Digitial tube driver
**/
void digitial_tube(){
switch (current_tube) {
case 0:
P2_3 = 1;
P0 = discode[dt_num1];
P2_0 = 0;
break;
case 1:
P2_0 = 1;
P0 = discode[dt_num2];
P2_1 = 0;
break;
case 2:
P2_1 = 1;
P0 = discode[dt_num3];
P2_2 = 0;
break;
case 3:
P2_2 = 1;
P0 = discode[dt_num4];
P2_3 = 0;
break;
}
current_tube++;
if (current_tube == 4) current_tube = 0;
}
/**
* Gear driver
**/
void gear() {
if (pwm_gear_current<pwm_gear) P2_7 = 1;
else P2_7 = 0;
pwm_gear_current++;
if (pwm_gear_current == 200) pwm_gear_current =0;
}
/**
* Start gear turning
* @pram i The angle for gear to turn.
**/
void gear_turn(short i) {
pwm_gear = i;
}
/**
* Moto driver
* The pwm of moto forward and backward are different.
* When moto move forward, the longer the high voltage level, the faster.
* When moto move backward, the longer the low voltage level, the faster.
**/
void moto() {
if (pwm_left_moto_current<pwm_left_moto) {
if (left_moto) {P1_5 = 1; P1_7 = 1;}
else {P1_5 = 0; P1_7 = 0;}
}
else {
if (left_moto) {P1_5 = 0; P1_7 = 0;}
else {P1_5 = 1; P1_7 = 1;}
}
pwm_left_moto_current++;
if (pwm_left_moto_current == 10) pwm_left_moto_current =0;
if (pwm_right_moto_current<pwm_right_moto) {
if (right_moto) {P1_1 = 1; P1_3 = 1;}
else {P1_1 = 0; P1_3 = 0;}
}
else {
if (right_moto) {P1_1 = 0; P1_3 = 0;}
else {P1_1 = 1; P1_3 = 1;}
}
pwm_right_moto_current++;
if (pwm_right_moto_current == 10) pwm_right_moto_current =0;
}
/**
* The interrupt function of timer0
**/
void int_timer0() interrupt 1 using 1 {
TF0 = 0;
gear();
}
/**
* The interrupt function of timer2
**/
void int_timer2() interrupt 5 using 2 {
TF2 = 0;
if ((uw_counter++)==10) {uw_status = 0; P2_5 = 1; uw_counter = 0;} //Start a ultrasonic detect every 20ms;
digitial_tube();
P2_5 = 0; //The high voltage level should remain more than 10us, thus call other function before set P2.5 low.
moto();
//Trace speed turn default slowly
if (trace_speed>default_trace_speed) {if (trace_speed_count++ == 250) {trace_speed_count = 0; trace_speed--;} }
else if (trace_speed<default_trace_speed) {if (trace_speed_count++ == 250) {trace_speed_count = 0; trace_speed++;} }
//Count stop time
if ((pwm_left_moto == 10)&&(pwm_right_moto == 10)) stop_time++; else stop_time = 0;
//Count fire time
if (!P3_0) fire_time++; else {fire_status = 0; fire_time = 0;}
if (fire_time == 10) fire_status = 1;
}
/**
* The interrupt function of int1
* This interrupt intends to store the distance counted
**/
void int_int1() interrupt 2 using 3 {
long i;
i = TH1*256+TL1;
i *= 344;
distance = i/2000;
//Rewite Tube
i = distance;
dt_num1 = i/1000;
i %= 1000;
dt_num2 = i/100;
i %= 100;
dt_num3 = i/10;
dt_num4 = i%10;
//Clear counted number in t1;
TH1 = 0;
TL1 = 0;
uw_status = 1;
}
/**
* Deyley function
* @pram time The time to delay(135~140us/num)
**/
void delay(long time) {
while ((time--)>0);
}
#endif