diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-04-02 12:47:05 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-04-02 12:47:05 +0000 |
commit | cec33ff0e62d3666f6a1828d78891d63da191e20 (patch) | |
tree | 449cd3b05d97067929a9d27838dafe0560ad7694 /boards | |
parent | 95a293d604bb8a2e7dedc3fc81f94d139d801f78 (diff) | |
download | ChibiOS-cec33ff0e62d3666f6a1828d78891d63da191e20.tar.gz ChibiOS-cec33ff0e62d3666f6a1828d78891d63da191e20.tar.bz2 ChibiOS-cec33ff0e62d3666f6a1828d78891d63da191e20.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1831 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'boards')
-rw-r--r-- | boards/EA_LPCXPRESSO_BB_1114/board.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/boards/EA_LPCXPRESSO_BB_1114/board.h b/boards/EA_LPCXPRESSO_BB_1114/board.h index 037bd3179..685ab4e64 100644 --- a/boards/EA_LPCXPRESSO_BB_1114/board.h +++ b/boards/EA_LPCXPRESSO_BB_1114/board.h @@ -37,8 +37,34 @@ #define SYSOSCCLK 12000000
/*
+ * GPIO 0 initial setup.
+ * Bit7 - LPCxpresso LED, initially output at low level. + */
+#define VAL_GPIO0DIR 0x00000080
+#define VAL_GPIO0DATA 0x00000000
+
+/*
+ * GPIO 1 initial setup.
+ */
+#define VAL_GPIO1DIR 0x00000000
+#define VAL_GPIO1DATA 0x00000000
+
+/*
+ * GPIO 2 initial setup.
+ */
+#define VAL_GPIO2DIR 0x00000000
+#define VAL_GPIO2DATA 0x00000000
+
+/*
+ * GPIO 3 initial setup.
+ */
+#define VAL_GPIO3DIR 0x00000000
+#define VAL_GPIO3DATA 0x00000000
+
+/*
* Pin definitions.
*/
+#define GPIO0_LED 7
#ifdef __cplusplus
extern "C" {
|