diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-03-16 11:31:51 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-03-16 11:31:51 +0000 |
commit | 9f03be80634856850145c1f61dc62cecb4a0a9be (patch) | |
tree | 5fa94dd0d7d7a820261087a79d557a12925f12c0 /testhal | |
parent | 216f0d6ace9bc674c9399dd22b950d42182e1bf6 (diff) | |
download | ChibiOS-9f03be80634856850145c1f61dc62cecb4a0a9be.tar.gz ChibiOS-9f03be80634856850145c1f61dc62cecb4a0a9be.tar.bz2 ChibiOS-9f03be80634856850145c1f61dc62cecb4a0a9be.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5440 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal')
-rw-r--r-- | testhal/STM32F37x/SPI/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32F37x/SPI/main.c b/testhal/STM32F37x/SPI/main.c index e43cdc32c..32aa382b9 100644 --- a/testhal/STM32F37x/SPI/main.c +++ b/testhal/STM32F37x/SPI/main.c @@ -27,7 +27,7 @@ static const SPIConfig hs_spicfg = {
NULL,
GPIOB,
- 12,
+ 10,
0,
SPI_CR2_DS_2 | SPI_CR2_DS_1 | SPI_CR2_DS_0
};
@@ -38,7 +38,7 @@ static const SPIConfig hs_spicfg = { static const SPIConfig ls_spicfg = {
NULL,
GPIOB,
- 12,
+ 10,
SPI_CR1_BR_2 | SPI_CR1_BR_1,
SPI_CR2_DS_2 | SPI_CR2_DS_1 | SPI_CR2_DS_0
};
|