aboutsummaryrefslogtreecommitdiffstats
path: root/boards
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-22 16:29:48 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-22 16:29:48 +0000
commit582ace5597d3bdefcd06b8b4ab673f48c81b969c (patch)
tree6266500832e40257d63c4133bcf15bd9de6d83bf /boards
parent7d197456418a1cfef07417a827489a4d45d27594 (diff)
downloadChibiOS-582ace5597d3bdefcd06b8b4ab673f48c81b969c.tar.gz
ChibiOS-582ace5597d3bdefcd06b8b4ab673f48c81b969c.tar.bz2
ChibiOS-582ace5597d3bdefcd06b8b4ab673f48c81b969c.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1660 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'boards')
-rw-r--r--boards/GENERIC_SPC563/board.c1
-rw-r--r--boards/GENERIC_SPC563/board.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/boards/GENERIC_SPC563/board.c b/boards/GENERIC_SPC563/board.c
index 254d72dcc..63e882851 100644
--- a/boards/GENERIC_SPC563/board.c
+++ b/boards/GENERIC_SPC563/board.c
@@ -49,6 +49,7 @@ void hwinit1(void) {
SIU.PCR[GPIO_BUTTON3].R = 0x0100; /* IBE. */
SIU.PCR[GPIO_BUTTON4].R = 0x0100; /* IBE. */
SIU.PCR[GPIO_SCI_A_TX].R = 0x0500; /* Primary | IBE. */
+ SIU.PCR[GPIO_SCI_A_RX].R = 0x0500; /* Primary | IBE. */
/*
* HAL initialization.
diff --git a/boards/GENERIC_SPC563/board.h b/boards/GENERIC_SPC563/board.h
index 5c7af7b60..78213a1ae 100644
--- a/boards/GENERIC_SPC563/board.h
+++ b/boards/GENERIC_SPC563/board.h
@@ -41,6 +41,7 @@
* I/O definitions.
*/
#define GPIO_SCI_A_TX 89
+#define GPIO_SCI_A_RX 90
#define GPIO_BUTTON1 179
#define GPIO_BUTTON2 181