-
Notifications
You must be signed in to change notification settings - Fork 0
/
uart.h
66 lines (49 loc) · 1.45 KB
/
uart.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
#ifndef _UART_H_
#define _UART_H_
#include <avr/io.h>
#define _FCPU 8000000UL
#include <util/delay.h>
#define FOSC 8000000// Clock Speed
#define BAUD 9600
#define BAUDRATE ((FOSC)/(BAUD*16UL)-1)
/*********************************************************************
* Function : uart_init();
*
* DESCRIPTION : initialize the UART
*
* PARAMETERS : none
*
* Return Value: Nothing
***********************************************************************/
void uart_init();
/*********************************************************************
* Function : uart_transmit(uint8_t data);
*
* DESCRIPTION : transmit data
*
* PARAMETERS : uint8_t data
*
* Return Value: Nothing
***********************************************************************/
void uart_transmit(uint8_t data);
/*********************************************************************
* Function : uart_receive(void);
*
* DESCRIPTION : recieve data
*
* PARAMETERS : none
*
* Return Value: UDR value (UART Data Register)
***********************************************************************/
uint8_t uart_receive(void);
/*********************************************************************
* Function : uart_transmit_string (char * str);
*
* DESCRIPTION : transmit each cahracter of the string
*
* PARAMETERS : char * str
*
* Return Value: Nothing
***********************************************************************/
void uart_transmit_string (char * str);
#endif