-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuart.h
39 lines (33 loc) · 836 Bytes
/
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
#ifndef UART_H_
#define UART_H_
//includes c
#include <stdint.h>
#include <stdio.h>
#include <stdbool.h>
//includes FreeRTOS
#include "FreeRTOS.h"
#include "task.h"
#include "queue.h"
#include "list.h"
#include "semphr.h"
//includes tiva
#include "inc/hw_ints.h"
#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "inc/hw_uart.h"
#include "driverlib/rom.h"
#include "driverlib/rom_map.h"
#include "driverlib/fpu.h"
#include "driverlib/sysctl.h"
#include "driverlib/timer.h"
#include "driverlib/gpio.h"
#include "driverlib/interrupt.h"
#include "driverlib/uart.h"
#include "driverlib/pin_map.h"
#include "tarefas.h"
extern void UART_IRQHandler(void *param);
void vUartInit(void *param);
void UART_Receive(uint8_t *pui8Data, uint32_t ui32Size);
void UARTIntHandler(void);
void Terminal(void *param);
#endif /* UART_H_ */