diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-09-27 12:11:57 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-09-27 12:11:57 +0000 |
commit | 6f0d2fed0a48227d878114093b1fce64294c1f5c (patch) | |
tree | cce7c58e0f3b31356bdc8851abe00c94e5f9b03c /boards | |
parent | cd90ae0dab9d1b0cf8475e4da455955d523ab70d (diff) | |
download | ChibiOS-6f0d2fed0a48227d878114093b1fce64294c1f5c.tar.gz ChibiOS-6f0d2fed0a48227d878114093b1fce64294c1f5c.tar.bz2 ChibiOS-6f0d2fed0a48227d878114093b1fce64294c1f5c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4716 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'boards')
-rw-r--r-- | boards/GENERIC_SPC560P/board.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/boards/GENERIC_SPC560P/board.c b/boards/GENERIC_SPC560P/board.c index b5e17a840..e6b1abf9c 100644 --- a/boards/GENERIC_SPC560P/board.c +++ b/boards/GENERIC_SPC560P/board.c @@ -23,7 +23,7 @@ #if HAL_USE_PAL || defined(__DOXYGEN__)
/* Initial setup of all defined pads, the list is terminated by a {0, 0}.*/
-static const spc560p_siul_init_t spc560p_siul_init[] = {
+static const spc560p_siu_init_t spc560p_siu_init[] = {
{PCR(PD, PD_BUTTON1), PAL_LOW, PAL_MODE_INPUT},
{PCR(PD, PD_BUTTON2), PAL_LOW, PAL_MODE_INPUT},
{PCR(PD, PD_BUTTON3), PAL_LOW, PAL_MODE_INPUT},
@@ -36,7 +36,7 @@ static const spc560p_siul_init_t spc560p_siul_init[] = { };
/* Initialization array for the PSMI registers.*/
-static const uint8_t spc560p_padsels_init[SPC5_SIUL_NUM_PADSELS] = {
+static const uint8_t spc560p_padsels_init[SPC5_SIU_NUM_PADSELS] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0
@@ -48,7 +48,7 @@ static const uint8_t spc560p_padsels_init[SPC5_SIUL_NUM_PADSELS] = { const PALConfig pal_default_config =
{
PAL_MODE_UNCONNECTED, /* Default mode for all undefined pads. */
- spc560p_siul_init,
+ spc560p_siu_init,
spc560p_padsels_init
};
#endif
|