-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinclude.h
52 lines (50 loc) · 1.25 KB
/
include.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
/**
* Raise your ARM 2015 sample code http://raiseyourarm.com/
* Author: Pay it forward club
* http://www.payitforward.edu.vn
* version 0.0.1
*/
/**
* @file include.h
* @brief Global include file
*/
#ifndef INCLUDE_H_
#define INCLUDE_H_
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include <math.h>
#include "driverlib/gpio.h"
#include "driverlib/sysctl.h"
#include "driverlib/pin_map.h"
#include "driverlib/timer.h"
#include "driverlib/adc.h"
#include "driverlib/interrupt.h"
#include "driverlib/qei.h"
#include "driverlib/fpu.h"
#include "driverlib/uart.h"
#include "driverlib/rom.h"
#include "inc/hw_ints.h"
#include "inc/hw_gpio.h"
#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "define.h"
#include "Bluetooth/uartstdio.h"
#include "SystemConfig.h"
#include "Timer/Timer.h"
#include "IR/IR.h"
#include "STR/Uocluong.h"
#include "STR/STR_Indirect.h"
#include "STR/Control_initialize.h"
#include "Bluetooth/ustdlib.h"
#include "Bluetooth/Bluetooth.h"
#include "QEI/qei.h"
#include "Button/Button.h"
#include "STR/speed_control.h"
#include "WallFollow/PID.h"
#include "WallFollow/WallFollow.h"
#include "Buzzer/Buzzer.h"
#include "Battery/Battery.h"
#include "HostComm/HostComm.h"
#include "Eeprom/EEPROM.h"
#endif /* INCLUDE_H_ */