-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwobot.h
52 lines (41 loc) · 1.14 KB
/
wobot.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
//*****************************************************************************
//
// wobot.h - Walking Robot's main settings and includes
//
//*****************************************************************************
#ifndef __WOBOT_H__
#define __WOBOT_H__
// by Hz
#define WR_SYS_TIMER_FREQUENCY 500
#define WR_PWMTIMER_RATE 100
// baud rate of bluetooth
#define WR_UART1_BAUD 9600
// baud rate of wire
#define WR_UART0_BAUD 115200
#include "wr_console.h"
#include "wr_serv.h"
#include "wr_pwmtimer.h"
#include "wr_uart.h"
#include "wr_flash.h"
#include "wr_leg.h"
#include "wr_walking.h"
#include "wr_sonar.h"
#include "str.h"
#include "inc/lm3s811.h"
#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "inc/hw_ints.h"
#include "driverlib/sysctl.h"
#include "driverlib/gpio.h"
#include "driverlib/interrupt.h"
#include "driverlib/debug.h"
#include "driverlib/flash.h"
#include "driverlib/uart.h"
#include "driverlib/systick.h"
#include "drivers/display96x16x1.h"
#include "utils/cmdline.h"
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>
#endif // __WOBOT_H__