-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEXTI_program.c
300 lines (229 loc) · 6.51 KB
/
EXTI_program.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
/*
* EXTI_program.c
*
* Created on: Oct 20, 2022
* Author: MSAEED99
*/
// Libraries
#include "STD_TYPES.h"
#include "BIT_MATH.h"
// MCAL
#include "EXTI_config.h"
#include "EXTI_register.h"
#include "EXTI_private.h"
#include "EXTI_interface.h"
// Global pointer to function to be used in callback
void (*EXTI_INT0PtrToFunc)(void) = NULL;
/*******************Initializing INT0, INT1 and INT2 Using Pre-build configurations*******************/
// ============================================================
// INT0 initialization
// ============================================================
void EXTI_voidINT0Init(void)
{
/* INT0 PIE Setting*/
#if INT0_EN_STATE == INT0_ENABLE
// Enable INT0 (PIE)
SET_BIT(GICR, GICR_INT0);
#elif INT0_EN_STATE == INT0_DISABLE
// Disable INT0 (PIE)
CLR_BIT(GICR, GICR_INT0);
#else
#error "Invalid INT0 Enable State (PIE)"
#endif
/* INT0 Sense Control Setting */
#if INT0_SENSE_CONTROL == INT0_LOW_LEVEL
CLR_BIT(MCUCR, MCUCR_ISC00);
CLR_BIT(MCUCR, MCUCR_ISC01);
#elif INT0_SENSE_CONTROL == INT0_ON_CHANGE
SET_BIT(MCUCR, MCUCR_ISC00);
CLR_BIT(MCUCR, MCUCR_ISC01);
#elif INT0_SENSE_CONTROL == INT0_FALLING_EDGE
CLR_BIT(MCUCR, MCUCR_ISC00);
SET_BIT(MCUCR, MCUCR_ISC01);
#elif INT0_SENSE_CONTROL == INT0_RISING_EDGE
SET_BIT(MCUCR, MCUCR_ISC00);
SET_BIT(MCUCR, MCUCR_ISC01);
#else
#error "Invalid INT0 Sense Control"
#endif
}
// ============================================================
// INT1 initialization
// ============================================================
void EXTI_voidINT1Init(void)
{
/* INT1 PIE Setting*/
#if INT1_EN_STATE == INT1_ENABLE
// Enable INT1 (PIE)
SET_BIT(GICR, GICR_INT1);
#elif INT1_EN_STATE == INT1_DISABLE
// Disable INT1 (PIE)
CLR_BIT(GICR, GICR_INT1);
#else
#error "Invalid INT1 Enable State (PIE)"
#endif
/* INT1 Sense Control Setting */
#if INT1_SENSE_CONTROL == INT1_LOW_LEVEL
CLR_BIT(MCUCR, MCUCR_ISC10);
CLR_BIT(MCUCR, MCUCR_ISC11);
#elif INT1_SENSE_CONTROL == INT1_ON_CHANGE
SET_BIT(MCUCR, MCUCR_ISC10);
CLR_BIT(MCUCR, MCUCR_ISC11);
#elif INT1_SENSE_CONTROL == INT1_FALLING_EDGE
CLR_BIT(MCUCR, MCUCR_ISC10);
SET_BIT(MCUCR, MCUCR_ISC11);
#elif INT1_SENSE_CONTROL == INT1_RISING_EDGE
SET_BIT(MCUCR, MCUCR_ISC10);
SET_BIT(MCUCR, MCUCR_ISC11);
#else
#error "Invalid INT1 Sense Control"
#endif
}
// ============================================================
// INT2 initialization
// ============================================================
void EXTI_voidINT2Init(void)
{
/* INT2 PIE Setting*/
#if INT2_EN_STATE == INT2_ENABLE
// Enable INT2 (PIE)
SET_BIT(GICR, GICR_INT2);
#elif INT2_EN_STATE == INT2_DISABLE
// Disable INT2 (PIE)
CLR_BIT(GICR, GICR_INT2);
#else
#error "Invalid INT2 Enable State (PIE)"
#endif
/* INT2 Sense Control Setting */
#if INT2_SENSE_CONTROL == INT2_FALLING_EDGE
CLR_BIT(MCUCSR, MCUCSR_ISC2);
#elif INT2_SENSE_CONTROL == INT2_RISING_EDGE
SET_BIT(MCUCSR, MCUCSR_ISC2);
#else
#error "Invalid INT2 Sense Control"
#endif
}
/*******************Initializing INT0, INT1 and INT2 Using Post-build configurations*******************/
// ============================================================
// INT0 initialization
// ============================================================
u8 EXTI_u8INT0Init(u8 copy_u8SenseControl)
{
u8 local_u8ErrorCode = 0;
// Enable INT0 (PIE)
SET_BIT(GICR, GICR_INT0);
switch(copy_u8SenseControl)
{
case INT0_LOW_LEVEL:
CLR_BIT(MCUCR, MCUCR_ISC00);
CLR_BIT(MCUCR, MCUCR_ISC01);
break;
case INT0_ON_CHANGE:
SET_BIT(MCUCR, MCUCR_ISC00);
CLR_BIT(MCUCR, MCUCR_ISC01);
break;
case INT0_FALLING_EDGE:
CLR_BIT(MCUCR, MCUCR_ISC00);
SET_BIT(MCUCR, MCUCR_ISC01);
break;
case INT0_RISING_EDGE:
SET_BIT(MCUCR, MCUCR_ISC00);
SET_BIT(MCUCR, MCUCR_ISC01);
break;
default:
local_u8ErrorCode = 1;
break;
}
return local_u8ErrorCode;
}
// ============================================================
// INT1 initialization
// ============================================================
u8 EXTI_u8INT1Init(u8 copy_u8SenseControl)
{
u8 local_u8ErrorCode = 0;
// Enable INT1 (PIE)
SET_BIT(GICR, GICR_INT1);
switch(copy_u8SenseControl)
{
case INT1_LOW_LEVEL:
CLR_BIT(MCUCR, MCUCR_ISC10);
CLR_BIT(MCUCR, MCUCR_ISC11);
break;
case INT1_ON_CHANGE:
SET_BIT(MCUCR, MCUCR_ISC10);
CLR_BIT(MCUCR, MCUCR_ISC11);
break;
case INT1_FALLING_EDGE:
CLR_BIT(MCUCR, MCUCR_ISC10);
SET_BIT(MCUCR, MCUCR_ISC11);
break;
case INT1_RISING_EDGE:
SET_BIT(MCUCR, MCUCR_ISC10);
SET_BIT(MCUCR, MCUCR_ISC11);
break;
default:
local_u8ErrorCode = 1;
break;
}
return local_u8ErrorCode;
}
// ============================================================
// INT2 initialization
// ============================================================
u8 EXTI_u8INT2Init(u8 copy_u8SenseControl)
{
u8 local_u8ErrorCode = 0;
// Enable INT2 (PIE)
SET_BIT(GICR, GICR_INT2);
switch(copy_u8SenseControl)
{
case INT2_FALLING_EDGE: CLR_BIT(MCUCSR, MCUCSR_ISC2); break;
case INT2_RISING_EDGE : SET_BIT(MCUCSR, MCUCSR_ISC2); break;
default : local_u8ErrorCode = 1; break;
}
return local_u8ErrorCode;
}
/**********************************Enable of Disable Interrupt (GIE)***********************************/
// ============================================================
// Global Interrupt Enable (GIE)
// ============================================================
// Enable GIE
void GIE_voidEnable(void)
{
SET_BIT(SREG, SREG_I);
}
// Disable GIE
void GIE_voidDisable(void)
{
CLR_BIT(SREG, SREG_I);
}
/***********************************Set Callback Function***********************************/
/*return: the error code, if return 1, means no errors
if return 1, NULL user function
* Parameters: pointer to function (address of a function
*/
u8 EXTI_u8SetCallBackINT0(void (*copy_pvUserFunc)(void))
{
u8 local_u8ErrorCode = OK;
if(copy_pvUserFunc != NULL)
{
EXTI_INT0PtrToFunc = copy_pvUserFunc;
}
else
{
local_u8ErrorCode = NOT_OK;
}
return local_u8ErrorCode;
}
// Interrupt Service Routine (ISR)
// Get Interrupt number from vector table in data sheet page 42
void __vector_1(void) __attribute__((signal));
void __vector_1(void)
{
if(EXTI_INT0PtrToFunc != NULL)
{
// Function holds the address of the user function which is in main.c
EXTI_INT0PtrToFunc();
}
}