diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-11-03 21:58:23 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-11-03 21:58:23 +0000 |
commit | bf185be2602528df7dd0f388b350cb71a378a1ce (patch) | |
tree | daf553b051df79be78629e4604672c1399df3812 | |
parent | 7a9ba73df808b2ea3b410a7d1f75293115881c90 (diff) | |
download | ChibiOS-bf185be2602528df7dd0f388b350cb71a378a1ce.tar.gz ChibiOS-bf185be2602528df7dd0f388b350cb71a378a1ce.tar.bz2 ChibiOS-bf185be2602528df7dd0f388b350cb71a378a1ce.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3465 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | boards/ST_STM32F4_DISCOVERY/board.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/boards/ST_STM32F4_DISCOVERY/board.h b/boards/ST_STM32F4_DISCOVERY/board.h index b3d2f23e7..30742b9af 100644 --- a/boards/ST_STM32F4_DISCOVERY/board.h +++ b/boards/ST_STM32F4_DISCOVERY/board.h @@ -233,7 +233,7 @@ PIN_MODE_INPUT(9) | \
PIN_MODE_ALTERNATE(GPIOC_SCLK) | \
PIN_MODE_INPUT(11) | \
- PIN_MODE_ALTERNATE(GPIOC_SDIN)) \
+ PIN_MODE_ALTERNATE(GPIOC_SDIN) | \
PIN_MODE_INPUT(13) | \
PIN_MODE_INPUT(14) | \
PIN_MODE_INPUT(15))
@@ -242,16 +242,16 @@ #define VAL_GPIOC_PUPDR (PIN_PUDR_FLOATING(GPIOC_OTG_FS_POWER_ON) |\
PIN_PUDR_PULLUP(1) | \
PIN_PUDR_PULLUP(2) | \
- PIN_PUDR_FLOATING(GPIOC_DOUT)) | \
+ PIN_PUDR_FLOATING(GPIOC_DOUT) | \
PIN_PUDR_PULLUP(4) | \
PIN_PUDR_PULLUP(5) | \
PIN_PUDR_PULLUP(6) | \
- PIN_PUDR_FLOATING(GPIOC_MCLK)) | \
+ PIN_PUDR_FLOATING(GPIOC_MCLK) | \
PIN_PUDR_PULLUP(8) | \
PIN_PUDR_PULLUP(9) | \
- PIN_PUDR_FLOATING(GPIOC_SCLK)) | \
+ PIN_PUDR_FLOATING(GPIOC_SCLK) | \
PIN_PUDR_PULLUP(11) | \
- PIN_PUDR_FLOATING(GPIOC_SDIN)) | \
+ PIN_PUDR_FLOATING(GPIOC_SDIN) | \
PIN_PUDR_PULLUP(13) | \
PIN_PUDR_PULLUP(14) | \
PIN_PUDR_PULLUP(15))
|