aboutsummaryrefslogtreecommitdiffstats
path: root/wirish/boards.h
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-03-30 08:06:42 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2011-03-30 13:57:33 -0400
commit300fa7122a9b896f507f637415c0fcd8effe2b88 (patch)
treede0999c36b0a965be9f43d0f0b49133b533c0652 /wirish/boards.h
parentb13926073f47012d6654b0236f195c4356831fc2 (diff)
downloadlibrambutan-300fa7122a9b896f507f637415c0fcd8effe2b88.tar.gz
librambutan-300fa7122a9b896f507f637415c0fcd8effe2b88.zip
Hacks to get things to compile in the IDE.
Diffstat (limited to 'wirish/boards.h')
-rw-r--r--wirish/boards.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/wirish/boards.h b/wirish/boards.h
index cec844f..8df7028 100644
--- a/wirish/boards.h
+++ b/wirish/boards.h
@@ -119,19 +119,22 @@ bool boardUsesPin(uint8 pin);
/* Include the appropriate private header from boards/: */
+/* FIXME put boards/ before these paths once you stick make into the
+ * IDE; current situation is a hack. */
+
#ifdef BOARD_maple
-#include "boards/maple.h"
+#include "maple.h"
#elif defined(BOARD_maple_native)
-#include "boards/maple_native.h"
+#include "maple_native.h"
#elif defined(BOARD_maple_mini)
-#include "boards/maple_mini.h"
+#include "maple_mini.h"
#elif defined(BOARD_maple_RET6)
/*
* **NOT** MAPLE REV6. This the **Maple RET6 EDITION**, which is a
* Maple with an STM32F103RET6 (...RET6) instead of an STM32F103RBT6
* (...RBT6) on it. Maple Rev6 (as of March 2011) DOES NOT EXIST.
*/
-#include "boards/maple_RET6.h"
+#include "maple_RET6.h"
#else
#error "Board type has not been selected correctly."
#endif