-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
231 lines (198 loc) · 3.7 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
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#include<reg52.h>
#include<intrins.h>
#include "watchdog.h"
#include "main.h"
#include "mfrc522.h"
#include <string.h>
typedef unsigned int uint;
unsigned char idata ID[4];
unsigned char idata RevBuffer[30];
unsigned char status;
unsigned char R_data;
unsigned char i = 0;
unsigned char heart = 0;
void Uart_SendByte(unsigned char Byte);
void lock();
void unlock();
void di(unsigned int x);
void verify();
void process();
void iccardcode();
void Uart_Init();
void lock(){
LOCK_A = 1;
LOCK_B = 0;
delay_10ms(50);
LOCK_A = 1;
LOCK_B = 1;
}
void unlock(){
LOCK_A = 0;
LOCK_B = 1;
delay_10ms(50);
LOCK_A = 1;
LOCK_B = 1;
}
void di(unsigned int x){ //蜂鸣器发声 x是时间
unsigned int Count1 = 0,Count2=0,Count3=0,flag=0;
x= x*100;
while(1){
WatchDog_Feed();
Count1++;
Count3++;
if(Count1==100)
{
Count2++;
if(Count2 ==4 )
{
Count1=0;
Count2=0;
flag=~flag;
}
}
if(!flag)
{
BEEP=~BEEP;
}
if (Count3 == x){
BEEP = 1;
return;
}
}
}
void process(){
if (R_data == 0xf2){
heart = 0;
return;
}
if (R_data == 0x01){
unlock();
delay_10ms(500);
lock();
return;
}
if (R_data == 0x02){
di(100);
return;
}
}
void iccardcode()
{
unsigned char tmp;
switch (status){
case 0: // 寻卡
LED_WAIT =0;
tmp = PcdRequest(0x52,&RevBuffer);
if (tmp == 0){
status =1;
}
break;
case 1: //防冲撞获取卡id
LED_FAIL =0;
tmp = PcdAnticoll(&ID);
if (tmp == 0){
status = 2;
}else{
status = 0;
}
break;
case 2: //验证卡
verify();
status =3;
break;
case 3: //防止出错
PcdReset();
status = 0;
break;
default:
status =0;
break;
}
HEART_TEST =~HEART_TEST;
if (heart >= 200){
di(10);
}
if (heart >= 100){
Uart_SendByte(0xf2);
status = 3;
}
heart++;
}
/********************************************************************
初始化
***********************************************************************/
void Uart_Init(void)
{
TMOD = 0x20; //定时器工作在定时器1的方式2
PCON = 0x00; //不倍频
SCON = 0x50; //串口工作在方式1,并且启动串行接收
TH1 = 0xFD; //设置波特率 9600
TL1 = 0xFd;
TR1 = 1; //启动定时器1
ES = 1; //开串口中断
EA = 1; //开总中断
PcdReset(); //读卡
PcdAntennaOff();
PcdAntennaOn();
M500PcdConfigISOType( 'A' );
}
/********************************************************************
* 名称 : Uart_SendByte(uchar Byte)
* 功能 : 串口发送1字节数据
* 输入 : 无
* 输出 : 无
***********************************************************************/
void Uart_SendByte(unsigned char Byte)
{
SBUF = Byte;
while(!TI) //如果发送完毕,硬件会置位TI
{
_nop_();
WatchDog_Feed();
}
}
/********************************************************************
* 名称 : Main()
* 功能 : 主函数
* 输入 : 无
* 输出 : 无
***********************************************************************/
void main()
{
Uart_Init();
HEART_TEST = 0;
WatchDog_Init();
WatchDog_Enable();
while(1)
{
LED_OK = 1;
LED_WAIT = 1;
LED_FAIL = 1;
iccardcode();
WatchDog_Feed();
}
}
/********************************************************************
* 名称 : Uart_Int()
* 功能 : 串口中断子函数
* 输入 : 无
* 输出 : 无
***********************************************************************/
void Uart_Int(void) interrupt 4
{
// static uchar i = 7; //定义为静态变量,当重新进入这个子函数时 i 的值不会发生改变
EA = 0;
if(RI == 1) //当硬件接收到一个数据时,RI会置位
{
R_data= SBUF;
RI = 0;
process();
}
EA = 1;
}
void verify(){
Uart_SendByte(0xfd);
for(i = 0; i <4 ;i++){
Uart_SendByte(ID[i]);
}
}