summaryrefslogtreecommitdiff
path: root/Venus_Skeleton/dataTypes.h
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2015-06-10 22:17:49 +0200
committerPeter Wu <peter@lekensteyn.nl>2015-06-10 22:17:49 +0200
commit5f926a60d2c80ed00665d6a09690b90ce531d8a2 (patch)
tree375e0c5ff9245f571f1c1bd1c9cd1e1580cdf8bf /Venus_Skeleton/dataTypes.h
parentdc2d8b106942684132a39adc6e207bbc9419f893 (diff)
downloadcode-5f926a60d2c80ed00665d6a09690b90ce531d8a2.tar.gz
Add include guards, fix compilation with arduino-makefile
Include guards are needed because files are concatenated. https://github.com/Lekensteyn/arduino-makefile (forked from https://github.com/tomswartz07/arduino-makefile)
Diffstat (limited to 'Venus_Skeleton/dataTypes.h')
-rw-r--r--Venus_Skeleton/dataTypes.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Venus_Skeleton/dataTypes.h b/Venus_Skeleton/dataTypes.h
index f19eaf5..2f2aa69 100644
--- a/Venus_Skeleton/dataTypes.h
+++ b/Venus_Skeleton/dataTypes.h
@@ -1,3 +1,6 @@
+#ifndef DATATYPES_H
+#define DATATYPES_H
+
// ****************
// ** Data types **
// ****************
@@ -63,3 +66,5 @@ typedef enum {
OPMODE_LABSEQUENCE,
OPMODE_ERROR
} opmode_t;
+
+#endif /* !DATATYPES_H */