-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeypad.c
executable file
·433 lines (348 loc) · 7.35 KB
/
keypad.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
/** Chatroom control codes for Microprocessor Laboratory
2017 Spring Semester. Lee Sang Su 2011314425 SKKU
github.com/sethlee0111
Based on the code of EMBEDDED SYSTEMS LAB of SKKU 2009
@author sethlee
@version 1.0
*/
#include "keypad.h"
int rowDataSamples = 0;
/**----------------------------------------------
* Initialization for Keypad //
*
* @author sethlee
*----------------------------------------------*/
void Init_Keypad(void) {
Pim.ddrh.byte = 0xf0; // PORTH AllOutput Setting
Pim.pieh.byte = 0x07; // Column만 Interrupt로 이용
Pim.ppsh.byte = 0x00;
}
/**----------------------------------------------
* Delay function for Keypad //
*
* @author sethlee
*----------------------------------------------*/
void m_delay(char x) {
char i;
for(i=0;i<x;i++);
}
/**----------------------------------------------
* Checking Keypad : should be iterating periodically//
*
* EMBEDDED SYSTEMS LAB
*----------------------------------------------*/
void Keypad_Check(void) {
KEYPAD_CHECK = FIRST_ROW;
m_delay(SW_TIME);
KEYPAD_CHECK = SECOND_ROW;
m_delay(SW_TIME);
KEYPAD_CHECK = THIRD_ROW;
m_delay(SW_TIME);
KEYPAD_CHECK = FOURTH_ROW;
m_delay(SW_TIME);
}
void Init_Key(void) {
Key = 0;
}
/**----------------------------------------------
* Interrupt Handler when the key is pressed
* Interrupt is for the column
*
* @author sethlee
*----------------------------------------------*/
void PortH_Interrupt_handler (void){
unsigned char keySource = (~(KEYPAD_CHECK)) >> 4; // row numbers: 0b 2341
/* Sampler for the button */
rowDatas[0] += (keySource & 0b0001);
rowDatas[1] += (keySource & 0b1000) >> 3; // row 2
rowDatas[2] += (keySource & 0b0100) >> 2; // row 3
rowDatas[3] += (keySource & 0b0010) >> 1; // row 4
rowDataSamples++;
if(rowDataSamples > 400 ) { //&& keyEnable == 1
Pressed_Key();
rowDataSamples = 0;
}
Pim.pifh.byte = 0x01 + 0x02 + 0x04;
}
/**----------------------------------------------
* Determine which key is pressed
*
* @author sethlee
*----------------------------------------------*/
void Pressed_Key(void) {
char i;
char maxRowIndex = 0;
Pim.pieh.byte = 0x00; // semaphore - prevents multiple inputs.
//This semaphore is disabled after one cursor blink at chatroom.c
/* row Data max & selecting */
for(i=1; i<4; i++) {
if(rowDatas[i] > rowDatas[maxRowIndex])
maxRowIndex = i;
}
// rowData initialize
for(i=0;i<4;i++) {
rowDatas[i] = 0;
}
if(maxRowIndex == 0) { //first row
m_delay(SW_TIME);
///////////////////////////////////////////////////////
if(Pim.pifh.byte & 0x01) //2nd Column에 인터럽트 발생시
{
//Typing Number
if(change == 0) {
Key = 50; //Ascii Code
}
//Typing Character
//변수 change가 1로 변하면 Character Out
else if(change==1) {
count =0;
if(Key==65) {
Key++;
}
else if(Key==66){
Key++;
}
else{
Key = 65;
}
}
m_delay(SW_TIME);
}
////////////////////////////////////////////////////
else if(Pim.pifh.byte & 0x02) { //1st Column
if(change == 0) {
Key = 49; //Ascii Code
}
//Typing Character
//변수 change가 1로 변하면 Character Out
else if(change==1) {
Key = 0x20;
}
m_delay(SW_TIME);
}
///////////////////////////////////////////////////////
if(Pim.pifh.byte & 0x04) //3rd Column에 인터럽트 발생시
{
//Typing Number
if(change == 0) {
Key = 51;
}
//Typing Character
//변수 change가 1로 변하면 Character Out
else if(change==1) {
count =0;
if(Key==68) {
Key++;
}
else if(Key==69){
Key++;
}
else{
Key = 68;
}
}
m_delay(SW_TIME);
}
////////////////////////////////////////////////////
}
//1st Row check finish
//2nd Row check
if(maxRowIndex == 1) {
m_delay(SW_TIME);
///////////////////////////////////////////////////////
if(Pim.pifh.byte & 0x01) //2nd Column에 인터럽트 발생시
{
//Typing Number
if(change == 0) {
Key = 53; //Ascii Code
}
//Typing Character
//변수 change가 1로 변하면 Character Out
else if(change==1) {
count =0;
if(Key==74) {
Key++;
}
else if(Key==75){
Key++;
}
else{
Key = 74;
}
}
m_delay(SW_TIME);
}
////////////////////////////////////////////////////
else if(Pim.pifh.byte & 0x02) //1st Column에 인터럽트 발생시
{
//Typing Number
if(change == 0) {
Key = 52; //Ascii Code
}
//Typing Character
//변수 change가 1로 변하면 Character Out
else if(change==1) {
count =0;
if(Key==71) {
Key++;
}
else if(Key==72){
Key++;
}
else{
Key = 71;
}
}
m_delay(SW_TIME);
}
///////////////////////////////////////////////////////
if(Pim.pifh.byte & 0x04) //3rd Column에 인터럽트 발생시
{
//Typing Number
if(change == 0) {
Key = 54;
}
//Typing Character
//변수 change가 1로 변하면 Character Out
else if(change==1) {
count =0;
if(Key==77) {
Key++;
}
else if(Key==78){
Key++;
}
else{
Key = 77;
}
}
m_delay(SW_TIME);
}
////////////////////////////////////////////////////
}
//2nd Row check finish
//3rd Row check
if(maxRowIndex == 2) {
m_delay(SW_TIME);
///////////////////////////////////////////////////////
if(Pim.pifh.byte & 0x01) //2nd Column에 인터럽트 발생시
{
//Typing Number
if(change == 0) {
Key = 56; //Ascii Code
}
//Typing Character
//변수 change가 1로 변하면 Character Out
else if(change==1) {
count =0;
if(Key==84) {
Key++;
}
else if(Key==85){
Key++;
}
else{
Key = 84;
}
}
m_delay(SW_TIME);
}
////////////////////////////////////////////////////
else if(Pim.pifh.byte & 0x02) //1st Column에 인터럽트 발생시
{
//Typing Number
if(change == 0) {
Key = 55; //Ascii Code
}
//Typing Character
//변수 change가 1로 변하면 Character Out
else if(change==1) {
count =0;
if(Key==80) {
Key=82;
}
else if(Key==82){
Key++;
}
else{
Key = 80;
}
}
m_delay(SW_TIME);
}
///////////////////////////////////////////////////////
if(Pim.pifh.byte & 0x04) //3rd Column에 인터럽트 발생시
{
//Typing Number
if(change == 0) {
Key = 57;
}
//Typing Character
//변수 change가 1로 변하면 Character Out
else if(change==1) {
count =0;
if(Key==87) {
Key++;
}
else if(Key==88){
Key++;
}
else{
Key = 87;
}
}
m_delay(SW_TIME);
}
////////////////////////////////////////////////////
}
//3rd Row check finish
//4th Row check
if(maxRowIndex == 3) {
m_delay(SW_TIME);
///////////////////////////////////////////////////////
if(Pim.pifh.byte & 0x01) //2nd Column에 인터럽트 발생시
{
//Typing Number
if(change == 0) {
Key = 48; //Ascii Code
}
//Typing Character
//변수 change가 1로 변하면 Character Out
else if(change==1) {
count =0;
if(Key==81) {
Key=90;
}
else{
Key = 81;
}
}
m_delay(SW_TIME);
}
////////////////////////////////////////////////////
else if(Pim.pifh.byte & 0x02) //1st Column에 인터럽트 발생시
{
//Typing Number
if(change == 0) {
change =1;
Key = 42; //Ascii Code *
}
else if(change==1) {
change = 0 ;
Key = 42;
}
m_delay(4000);
}
///////////////////////////////////////////////////////
if(Pim.pifh.byte & 0x04) //3rd Column에 인터럽트 발생시
{
Key = '\0';
m_delay(SW_TIME);
}
////////////////////////////////////////////////////
}
//4th Row check finish
Pim.pifh.byte = 0x01 + 0x02 + 0x04;
if(Key != 42) // do not do this when Key = *
Button_Pushed(Key);
}