diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-06-12 14:08:46 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-06-12 14:08:46 +0000 |
commit | 9343707ee283190273d0c4e94f8fdf1b9d264905 (patch) | |
tree | fd9c0976c383730f35fa51e36caad62a2112e526 /boards/ST_EVB_SPC56EL | |
parent | fa0f676801195d9887184175bf5c59d0d1e9c0cb (diff) | |
download | ChibiOS-9343707ee283190273d0c4e94f8fdf1b9d264905.tar.gz ChibiOS-9343707ee283190273d0c4e94f8fdf1b9d264905.tar.bz2 ChibiOS-9343707ee283190273d0c4e94f8fdf1b9d264905.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5843 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'boards/ST_EVB_SPC56EL')
-rw-r--r-- | boards/ST_EVB_SPC56EL/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boards/ST_EVB_SPC56EL/board.c b/boards/ST_EVB_SPC56EL/board.c index 1f510a997..7373f595d 100644 --- a/boards/ST_EVB_SPC56EL/board.c +++ b/boards/ST_EVB_SPC56EL/board.c @@ -18,7 +18,7 @@ #include "hal.h"
#if HAL_USE_PAL || defined(__DOXYGEN__)
-/* Initial setup of all defined pads, the list is terminated by a {0, 0, 0}.*/
+/* Initial setup of all defined pads, the list is terminated by a {-1, 0, 0}.*/
static const spc_siu_init_t spc_siu_init[] = {
{PCR(PORT_B, PB_LIN0_TDX), PAL_HIGH, PAL_MODE_OUTPUT_ALTERNATE(1)},
{PCR(PORT_B, PB_LIN0_RDX), PAL_HIGH, PAL_MODE_INPUT},
@@ -30,7 +30,7 @@ static const spc_siu_init_t spc_siu_init[] = { {PCR(PORT_D, PD_LED2), PAL_HIGH, PAL_MODE_OUTPUT_PUSHPULL},
{PCR(PORT_D, PD_LED3), PAL_HIGH, PAL_MODE_OUTPUT_PUSHPULL},
{PCR(PORT_D, PD_LED4), PAL_HIGH, PAL_MODE_OUTPUT_PUSHPULL},
- {0, 0, 0}
+ {-1, 0, 0}
};
/* Initialization array for the PSMI registers.*/
|