-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUSART_PROGRAM.c
443 lines (371 loc) · 10.9 KB
/
USART_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
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
434
435
436
437
438
439
440
441
442
443
/***************************************************************/
/***************************************************************/
/************ Author: A. S. Eldesouky ************/
/************ Layer: MCAL ************/
/************ SWC: USART ************/
/************ Date: 6-10-2020 ************/
/************ Version: 1.00 ************/
/***************************************************************/
/***************************************************************/
#include "STD_TYPE.h"
#include "BIT_MATH.h"
#include "USART_CONFIG.h"
#include "USART_INTERFACE.h"
#include "USART_PRIVATE.h"
#include "USART_REGISTER.h"
/*Global variable to carry the send Data*/
static const char * USART_puint8SendData = NULL ;
/*Global variable to carry the Receive Data*/
static uint8 * USART_puint8ReceiveData = NULL ;
/*Global variable to carry the buffer size*/
static uint8 USART_uint8BufferSize ;
/*Global variable to indicate for the current Data index of the buffer*/
static uint8 USART_uint8Index ;
/*Global pointer to function to carry the notification function called by ISR*/
static void (* USART_pvNotificationFunc)(void)= NULL;
/*Global flag for the USART Busy State*/
static uint8 USART_uint8State= ACTIVE ;
void USART_VoidInit (void)
{
/*Set Baud Rate*/
uint8 Local_uint8UCSRC = 0 ;
uint8 Local_uint8UBRRH = 0 ;
uint16 Local_uint16UBRR = (uint16)((SYSTEM_FREQUENCY / (16 * USART_BAUD_RATE)) - 1) ;
#if (USART_MODE == ASYNCHRONOUS) && (USART_SYSTEM_SPEED == USART_X1)
CLR_BIT(UCSRA , UCSRA_U2X) ;
#elif (USART_MODE == ASYNCHRONOUS) && (USART_SYSTEM_SPEED == USART_X2)
Local_uint16UBRR /= 2 ;
SET_BIT(UCSRA , UCSRA_U2X) ;
#elif (USART_MODE == SYNCHRONOUS)
Local_uint16UBRR /= 8 ;
#else
#error "Wrong USART_MODE or USART_SYSTEM_SPEED config"
#endif
UBRRL = (uint8)Local_uint16UBRR ;
UBRRH = (Local_uint8UBRRH >> 8) ;
/*Multi-Processor Communication mode*/
#if USART_MPCM == DISABLE
CLR_BIT(UCSRA , UCSRA_MPCM) ;
#elif USART_MPCM == ENABLE
SET_BIT(UCSRA , UCSRA_MPCM) ;
#else
#error "Wrong USART_MPCM config"
#endif
/*UCSRC Register Config*/
/*USART Mode*/
#if USART_MODE == ASYNCHRONOUS
CLR_BIT(Local_uint8UCSRC , UCSRC_UMSEL) ;
#elif USART_MODE == SYNCHRONOUS
SET_BIT(Local_uint8UCSRC , UCSRC_UMSEL) ;
#else
#error "Wrong USART_MODE config"
#endif
/*Parity Mode*/
#if USART_PARITY_MODE == DISABLE
CLR_BIT(Local_uint8UCSRC , UCSRC_UPM0) ;
CLR_BIT(Local_uint8UCSRC , UCSRC_UPM1) ;
#elif USART_PARITY_MODE == EVEN_PARITY
CLR_BIT(Local_uint8UCSRC , UCSRC_UPM0) ;
SET_BIT(Local_uint8UCSRC , UCSRC_UPM1) ;
#elif USART_PARITY_MODE == ODD_PARITY
SET_BIT(Local_uint8UCSRC , UCSRC_UPM0) ;
SET_BIT(Local_uint8UCSRC , UCSRC_UPM1) ;
#else
#error "Wrong USART_PARITY_MODE config"
#endif
/*Stop Bit*/
#if USART_STOP_BIT == STOP_BIT_1
CLR_BIT(Local_uint8UCSRC , UCSRC_USBS) ;
#elif USART_STOP_BIT == STOP_BIT_2
SET_BIT(Local_uint8UCSRC , UCSRC_USBS) ;
#else
#error "Wrong USART_STOP_BIT config"
#endif
/*Data Size*/
#if USART_DATA_SIZE == DATA_SIZE_5_BIT
CLR_BIT(Local_uint8UCSRC , UCSRC_UCSZ0) ;
CLR_BIT(Local_uint8UCSRC , UCSRC_UCSZ1) ;
CLR_BIT(UCSRB , UCSRB_UCSZ2) ;
#elif USART_DATA_SIZE == DATA_SIZE_6_BIT
SET_BIT(Local_uint8UCSRC , UCSRC_UCSZ0) ;
CLR_BIT(Local_uint8UCSRC , UCSRC_UCSZ1) ;
CLR_BIT(UCSRB , UCSRB_UCSZ2) ;
#elif USART_DATA_SIZE == DATA_SIZE_7_BIT
CLR_BIT(Local_uint8UCSRC , UCSRC_UCSZ0) ;
SET_BIT(Local_uint8UCSRC , UCSRC_UCSZ1) ;
CLR_BIT(UCSRB , UCSRB_UCSZ2) ;
#elif USART_DATA_SIZE == DATA_SIZE_8_BIT
SET_BIT(Local_uint8UCSRC , UCSRC_UCSZ0) ;
SET_BIT(Local_uint8UCSRC , UCSRC_UCSZ1) ;
CLR_BIT(UCSRB , UCSRB_UCSZ2) ;
#elif USART_DATA_SIZE == DATA_SIZE_5_BIT
SET_BIT(Local_uint8UCSRC , UCSRC_UCSZ0) ;
SET_BIT(Local_uint8UCSRC , UCSRC_UCSZ1) ;
SET_BIT(UCSRB , UCSRB_UCSZ2) ;
#else
#error "Wrong USART_DATA_SIZE config"
#endif
/*Clock Polarity (for SYNCHRONOUS mode only)*/
#if USART_MODE == SYNCHRONOUS
#if USART_CLOCK_POLARITY == XCK_RISING_TX_XCH_FALLING_RX
CLR_BIT(Local_uint8UCSRC , UCSRC_UCPOL) ;
#elif USART_CLOCK_POLARITY == XCK_RISING_RX_XCH_FALLING_TX
SET_BIT(Local_uint8UCSRC , UCSRC_UCPOL) ;
#else
#error "Wrong USART_STOP_BIT config"
#endif
#endif
/*Set UCSRC Mode*/
SET_BIT(Local_uint8UCSRC , UCSRC_URSEL) ;
/*Store the value in UCSRC Register*/
UCSRC = Local_uint8UCSRC ;
/*RX Complete Interrupt Enable*/
#if USART_RX_COMPLETE_INTERRUPT == DISABLE
CLR_BIT(UCSRB , UCSRB_RXCIE) ;
#elif USART_RX_COMPLETE_INTERRUPT == ENABLE
SET_BIT(UCSRB , UCSRB_RXCIE) ;
#else
#error "Wrong USART_RX_COMPLETE_INTERRUPT config"
#endif
/*TX Complete Interrupt Enable*/
#if USART_TX_COMPLETE_INTERRUPT == DISABLE
CLR_BIT(UCSRB , UCSRB_TXCIE) ;
#elif USART_TX_COMPLETE_INTERRUPT == ENABLE
SET_BIT(UCSRB , UCSRB_TXCIE) ;
#else
#error "Wrong USART_TX_COMPLETE_INTERRUPT config"
#endif
/*UDR Empty Interrupt Enable*/
#if USART_UDR_EMPTY_INTERRUPT == DISABLE
CLR_BIT(UCSRB , UCSRB_UDRIE) ;
#elif USART_UDR_EMPTY_INTERRUPT == ENABLE
SET_BIT(UCSRB , UCSRB_UDRIE) ;
#else
#error "Wrong USART_UDR_EMPTY_INTERRUPT config"
#endif
/*Receive Enable*/
#if USART_RECEIVER_ENABLE == DISABLE
CLR_BIT(UCSRB , UCSRB_RXEN) ;
#elif USART_RECEIVER_ENABLE == ENABLE
SET_BIT(UCSRB , UCSRB_RXEN) ;
#else
#error "Wrong USART_RECEIVER_ENABLE config"
#endif
/*Transmitter Enable*/
#if USART_TRANSMITTER_ENABLE == DISABLE
CLR_BIT(UCSRB , UCSRB_TXEN) ;
#elif USART_TRANSMITTER_ENABLE == ENABLE
SET_BIT(UCSRB , UCSRB_TXEN) ;
#else
#error "Wrong USART_TRANSMITTER_ENABLE config"
#endif
}
uint8 USART_uint8SendData (uint8 Copy_uint8Data)
{
uint8 Local_uint8ErrorState = OK ;
uint32 Local_uint32TimeoutCounter = 0 ;
if (USART_uint8State == ACTIVE)
{
USART_uint8State = BUSY ;
/*Wait until a receive complete*/
while (((GET_BIT(UCSRA , UCSRA_UDRE)) == 0) && (Local_uint32TimeoutCounter != USART_uint32TIMEOUT))
{
Local_uint32TimeoutCounter++ ;
}
if (Local_uint32TimeoutCounter == USART_uint32TIMEOUT)
{
Local_uint8ErrorState = TIMEOUT_STATE ;
}
else
{
UDR = Copy_uint8Data ;
}
USART_uint8State = ACTIVE ;
}
else
{
Local_uint8ErrorState = BUSY_STATE ;
}
return Local_uint8ErrorState ;
}
uint8 USART_uint8RecevieData (uint8 * Copy_uint8ReceviedData)
{
uint8 Local_uint8ErrorState ;
uint32 Local_uint32TimeoutCounter = 0 ;
if (Copy_uint8ReceviedData != NULL)
{
if (USART_uint8State == ACTIVE)
{
USART_uint8State = BUSY ;
/*Wait until a receive complete*/
while (((GET_BIT(UCSRA , UCSRA_RXC)) == 0) && (Local_uint32TimeoutCounter != USART_uint32TIMEOUT))
{
Local_uint32TimeoutCounter++ ;
}
if (Local_uint32TimeoutCounter == USART_uint32TIMEOUT)
{
Local_uint8ErrorState = TIMEOUT_STATE ;
}
else
{
* Copy_uint8ReceviedData = UDR ;
}
USART_uint8State = ACTIVE ;
}
else
{
Local_uint8ErrorState = BUSY_STATE ;
}
}
else
{
Local_uint8ErrorState = NULL_POINTER ;
}
return Local_uint8ErrorState ;
}
uint8 USART_uint8SendStingSynch (const char * Copy_pchString)
{
uint8 Local_uint8ErrorState = OK ;
uint32 Local_uint32Index = 0 ;
if (Copy_pchString != NULL)
{
while (Copy_pchString[Local_uint32Index] != '\0')
{
Local_uint8ErrorState = USART_uint8SendData(Copy_pchString[Local_uint32Index]) ;
Local_uint32Index++ ;
if (Local_uint8ErrorState != OK)
{
return Local_uint8ErrorState ;
}
}
}
else
{
Local_uint8ErrorState = NULL_POINTER ;
}
return Local_uint8ErrorState ;
}
uint8 USART_uint8SendStingAsynch (const char * Copy_pchString , void (* NotificationFunc)(void))
{
uint8 Local_uint8ErrorState = OK ;
if (USART_uint8State == ACTIVE)
{
if ((Copy_pchString != NULL) && (NotificationFunc != NULL))
{
/*USART is now Busy*/
USART_uint8State = BUSY ;
/*Assign the USART data globally*/
USART_puint8SendData = Copy_pchString ;
USART_pvNotificationFunc = NotificationFunc ;
/*Set Index to first element*/
USART_uint8Index = 0 ;
/*Send first Data */
UDR = USART_puint8SendData[USART_uint8Index] ;
/*USART Transmit Interrupt Enable*/
SET_BIT(UCSRB , UCSRB_TXCIE) ;
}
else
{
Local_uint8ErrorState = NULL_POINTER ;
}
}
else
{
Local_uint8ErrorState = BUSY_STATE ;
}
return Local_uint8ErrorState ;
}
uint8 USART_uint8ReceiveBufferSynch (uint8 * Copy_pchString , uint32 Copy_uint32BufferSize)
{
uint8 Local_uint8ErrorState = OK ;
uint32 Local_uint32Index = 0 ;
if (Copy_pchString != NULL)
{
while (Local_uint32Index < Copy_uint32BufferSize)
{
Local_uint8ErrorState = USART_uint8RecevieData(&Copy_pchString[Local_uint32Index]) ;
Local_uint32Index++ ;
if (Local_uint8ErrorState != OK)
{
break ;
}
}
}
else
{
Local_uint8ErrorState = NULL_POINTER ;
}
return Local_uint8ErrorState ;
}
uint8 USART_uint8ReceiveBufferAsynch (uint8 * Copy_pchString , uint32 Copy_uint32BufferSize , void (* NotificationFunc)(void))
{
uint8 Local_uint8ErrorState = OK ;
if (USART_uint8State == ACTIVE)
{
if ((Copy_pchString != NULL) && (NotificationFunc != NULL))
{
/*USART is now Busy*/
USART_uint8State = BUSY ;
/*Assign the USART data globally*/
USART_puint8ReceiveData = Copy_pchString ;
USART_pvNotificationFunc = NotificationFunc ;
/*Set Index to first element*/
USART_uint8Index = 0 ;
/*USART Transmit Interrupt Enable*/
SET_BIT(UCSRB , UCSRB_RXCIE) ;
}
else
{
Local_uint8ErrorState = NULL_POINTER ;
}
}
else
{
Local_uint8ErrorState = BUSY_STATE ;
}
return Local_uint8ErrorState ;
}
void __vector_13 (void) __attribute__ ((signal)) ;
void __vector_13 (void)
{
/*Increment Data index of the buffer*/
USART_uint8Index++ ;
if (USART_uint8Index == USART_uint8BufferSize)
{
/*Send Data Complete*/
/*USART is now Active*/
USART_uint8State = ACTIVE ;
/*Call Notification Function*/
USART_pvNotificationFunc() ;
/*USART Transmit Interrupt Enable*/
CLR_BIT(UCSRB , UCSRB_TXCIE) ;
}
else
{
/*Send Data not Complete*/
/*Send next Data*/
UDR = USART_puint8SendData[USART_uint8Index] ;
}
}
void __vector_15 (void) __attribute__ ((signal)) ;
void __vector_15 (void)
{
/*Receive next Data*/
USART_puint8ReceiveData[USART_uint8Index] = UDR ;
/*Increment Data index of the buffer*/
USART_uint8Index++ ;
if (USART_puint8ReceiveData[USART_uint8Index] == USART_uint8BufferSize)
{
/*Receive Data Complete*/
/*USART is now Active*/
USART_uint8State = ACTIVE ;
/*Call Notification Function*/
USART_pvNotificationFunc() ;
/*USART Receive Interrupt Enable*/
CLR_BIT(UCSRB , UCSRB_RXCIE) ;
}
else
{
/*Do Noting*/
}
}