summaryrefslogtreecommitdiffstats
path: root/source/Code/HAL
diff options
context:
space:
mode:
authorsicarius <devnull@localhost>2007-02-11 19:32:03 +0100
committersicarius <devnull@localhost>2007-02-11 19:32:03 +0100
commit56d9bdd39ed36c36e9a61411b86c76d5228b2133 (patch)
tree0cca7a63a5609f91d1912ecbde6743938c9ae5d2 /source/Code/HAL
parent644121b478a57772150f460c3c8cd035aa6767a2 (diff)
downloadrc2007-soccer-56d9bdd39ed36c36e9a61411b86c76d5228b2133.tar
rc2007-soccer-56d9bdd39ed36c36e9a61411b86c76d5228b2133.zip
Added lot's of code-files used during work
Diffstat (limited to 'source/Code/HAL')
-rw-r--r--source/Code/HAL/board.c9
-rw-r--r--source/Code/HAL/board.h14
2 files changed, 23 insertions, 0 deletions
diff --git a/source/Code/HAL/board.c b/source/Code/HAL/board.c
new file mode 100644
index 0000000..cf1bae8
--- /dev/null
+++ b/source/Code/HAL/board.c
@@ -0,0 +1,9 @@
+#include "HAL/board.h"
+
+board::board() {
+
+}
+
+board::~board() {
+
+}
diff --git a/source/Code/HAL/board.h b/source/Code/HAL/board.h
new file mode 100644
index 0000000..f0133c1
--- /dev/null
+++ b/source/Code/HAL/board.h
@@ -0,0 +1,14 @@
+#ifndef _BOARD_H
+#define _BOARD_H
+
+#include <avr/io.h>
+
+class board
+{
+private:
+public:
+ board();
+ ~board();
+};
+
+#endif