blob: 698163aa9e62adff73b474662e46bfab5d1f3674 (
plain)
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
|
#ifndef _DEFINES_H
#define _DEFINES_H
#ifndef NULL
#define NULL 0
#endif
//Integer definition
#ifndef int8
#ifdef __int8
#define int8 __int8
#else
#define int8 char
#endif
#endif
#ifndef int16
#ifdef __int16
#define int16 __int16
#else
#define int16 int
#endif
#endif
#ifndef int32
#ifdef __int32
#define int32 __int32
#else
#define int32 long
#endif
#endif
#ifndef int64
#ifdef __int64
#define int64 __int64
#else
#define int64 long long
#endif
#endif
//Unsigned
#ifndef uint8
#define uint8 unsigned int8
#endif
#ifndef uint16
#define uint16 unsigned int16
#endif
#ifndef uint32
#define uint32 unsigned int32
#endif
#ifndef uint64
#define uint64 unsigned int64
#endif
//Sensor types
enum SensorTypes
{
SENSOR_TYPE_ANALOG,
SENSOR_TYPE_DIGITAL,
};
//IO Module Names
enum IOModuleNames
{
//General
IO_START,
//Engines
IO_ENGINE_START = IO_START,
IO_ENGINE_DRIVE_LEFT = IO_ENGINE_START,
IO_ENGINE_DRIVE_RIGHT,
IO_ENGINE_DRIVE_BACK,
IO_ENGINE_END,
//Sensors
IO_SENSOR_START = IO_ENGINE_END,
IO_SENSOR_MOUSE = IO_SENSOR_START,
IO_SENSOR_END,
//General
IO_END = IO_SENSOR_END,
};
#endif
|