-
Notifications
You must be signed in to change notification settings - Fork 0
/
eusart.h
410 lines (316 loc) · 9.17 KB
/
eusart.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
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
/**
EUSART Generated Driver API Header File
@Company
Microchip Technology Inc.
@File Name
eusart.h
@Summary
This is the generated header file for the EUSART driver using PIC10 / PIC12 / PIC16 / PIC18 MCUs
@Description
This header file provides APIs for driver for EUSART.
Generation Information :
Product Revision : PIC10 / PIC12 / PIC16 / PIC18 MCUs - 1.81.8
Device : PIC18F46K20
Driver Version : 2.1.1
The generated drivers are tested against the following:
Compiler : XC8 2.36 and above
MPLAB : MPLAB X 6.00
*/
/*
(c) 2018 Microchip Technology Inc. and its subsidiaries.
Subject to your compliance with these terms, you may use Microchip software and any
derivatives exclusively with Microchip products. It is your responsibility to comply with third party
license terms applicable to your use of third party software (including open source software) that
may accompany Microchip software.
THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER
EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY
IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS
FOR A PARTICULAR PURPOSE.
IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE,
INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND
WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP
HAS BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO
THE FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL
CLAIMS IN ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT
OF FEES, IF ANY, THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS
SOFTWARE.
*/
#ifndef EUSART_H
#define EUSART_H
/**
Section: Included Files
*/
#include <xc.h>
#include <stdbool.h>
#include <stdint.h>
#ifdef __cplusplus // Provide C++ Compatibility
extern "C" {
#endif
/**
Section: Macro Declarations
*/
#define EUSART_DataReady (EUSART_is_rx_ready())
/**
Section: Data Type Definitions
*/
typedef union {
struct {
unsigned perr : 1;
unsigned ferr : 1;
unsigned oerr : 1;
unsigned reserved : 5;
};
uint8_t status;
}eusart_status_t;
/**
Section: EUSART APIs
*/
/**
@Summary
Initialization routine that takes inputs from the EUSART GUI.
@Description
This routine initializes the EUSART driver.
This routine must be called before any other EUSART routine is called.
@Preconditions
None
@Param
None
@Returns
None
@Comment
*/
void EUSART_Initialize(void);
/**
@Summary
Checks if the EUSART transmitter is ready to transmit data
@Description
This routine checks if EUSART transmitter is ready
to accept and transmit data byte
@Preconditions
EUSART_Initialize() function should have been called
before calling this function.
EUSART transmitter should be enabled before calling
this function
@Param
None
@Returns
Status of EUSART transmitter
TRUE: EUSART transmitter is ready
FALSE: EUSART transmitter is not ready
@Example
<code>
void main(void)
{
volatile uint8_t rxData;
// Initialize the device
SYSTEM_Initialize();
while(1)
{
// Logic to echo received data
if(EUSART_is_rx_ready())
{
rxData = UART1_Read();
if(EUSART_is_tx_ready())
{
EUSARTWrite(rxData);
}
}
}
}
</code>
*/
bool EUSART_is_tx_ready(void);
/**
@Summary
Checks if the EUSART receiver ready for reading
@Description
This routine checks if EUSART receiver has received data
and ready to be read
@Preconditions
EUSART_Initialize() function should be called
before calling this function
EUSART receiver should be enabled before calling this
function
@Param
None
@Returns
Status of EUSART receiver
TRUE: EUSART receiver is ready for reading
FALSE: EUSART receiver is not ready for reading
@Example
<code>
void main(void)
{
volatile uint8_t rxData;
// Initialize the device
SYSTEM_Initialize();
while(1)
{
// Logic to echo received data
if(EUSART_is_rx_ready())
{
rxData = UART1_Read();
if(EUSART_is_tx_ready())
{
EUSART_Write(rxData);
}
}
}
}
</code>
*/
bool EUSART_is_rx_ready(void);
/**
@Summary
Checks if EUSART data is transmitted
@Description
This function return the status of transmit shift register
@Preconditions
EUSART_Initialize() function should be called
before calling this function
EUSART transmitter should be enabled and EUSART_Write
should be called before calling this function
@Param
None
@Returns
Status of EUSART receiver
TRUE: Data completely shifted out if the USART shift register
FALSE: Data is not completely shifted out of the shift register
@Example
<code>
void main(void)
{
volatile uint8_t rxData;
// Initialize the device
SYSTEM_Initialize();
while(1)
{
if(EUSART_is_tx_ready())
{
LED_0_SetHigh();
EUSARTWrite(rxData);
}
if(EUSART_is_tx_done()
{
LED_0_SetLow();
}
}
}
</code>
*/
bool EUSART_is_tx_done(void);
/**
@Summary
Gets the error status of the last read byte.
@Description
This routine gets the error status of the last read byte.
@Preconditions
EUSART_Initialize() function should have been called
before calling this function. The returned value is only
updated after a read is called.
@Param
None
@Returns
the status of the last read byte
@Example
<code>
void main(void)
{
volatile uint8_t rxData;
volatile eusart_status_t rxStatus;
// Initialize the device
SYSTEM_Initialize();
// Enable the Global Interrupts
INTERRUPT_GlobalInterruptEnable();
while(1)
{
// Logic to echo received data
if(EUSART_is_rx_ready())
{
rxData = EUSART_Read();
rxStatus = EUSART_get_last_status();
if(rxStatus.ferr){
LED_0_SetHigh();
}
}
}
}
</code>
*/
eusart_status_t EUSART_get_last_status(void);
/**
@Summary
Read a byte of data from the EUSART.
@Description
This routine reads a byte of data from the EUSART.
@Preconditions
EUSART_Initialize() function should have been called
before calling this function. The transfer status should be checked to see
if the receiver is not empty before calling this function.
@Param
None
@Returns
A data byte received by the driver.
*/
uint8_t EUSART_Read(void);
/**
@Summary
Writes a byte of data to the EUSART.
@Description
This routine writes a byte of data to the EUSART.
@Preconditions
EUSART_Initialize() function should have been called
before calling this function. The transfer status should be checked to see
if transmitter is not busy before calling this function.
@Param
txData - Data byte to write to the EUSART
@Returns
None
*/
void EUSART_Write(uint8_t txData);
/**
@Summary
Set EUSART Framing Error Handler
@Description
This API sets the function to be called upon EUSART framing error
@Preconditions
Initialize the EUSART before calling this API
@Param
Address of function to be set as framing error handler
@Returns
None
*/
void EUSART_SetFramingErrorHandler(void (* interruptHandler)(void));
/**
@Summary
Set EUSART Overrun Error Handler
@Description
This API sets the function to be called upon EUSART overrun error
@Preconditions
Initialize the EUSART module before calling this API
@Param
Address of function to be set as overrun error handler
@Returns
None
*/
void EUSART_SetOverrunErrorHandler(void (* interruptHandler)(void));
/**
@Summary
Set EUSART Error Handler
@Description
This API sets the function to be called upon EUSART error
@Preconditions
Initialize the EUSART module before calling this API
@Param
Address of function to be set as error handler
@Returns
None
*/
void EUSART_SetErrorHandler(void (* interruptHandler)(void));
#ifdef __cplusplus // Provide C++ Compatibility
}
#endif
#endif // EUSART_H
/**
End of File
*/