aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32F4xx
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2015-02-23 14:23:15 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2015-02-23 14:23:15 +0000
commite42ca31b0f62818ed84c144eea7195515da7924f (patch)
tree1957890996cd67f67b8b5e09861fbe23a8af3a91 /testhal/STM32/STM32F4xx
parent20551e0172314fabfbf2889bbbfb4b2d62c39d9c (diff)
downloadChibiOS-e42ca31b0f62818ed84c144eea7195515da7924f.tar.gz
ChibiOS-e42ca31b0f62818ed84c144eea7195515da7924f.tar.bz2
ChibiOS-e42ca31b0f62818ed84c144eea7195515da7924f.zip
limit the use of scratchpad buffer
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7697 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F4xx')
-rw-r--r--testhal/STM32/STM32F4xx/SDC/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32/STM32F4xx/SDC/main.c b/testhal/STM32/STM32F4xx/SDC/main.c
index 60b6a75eb..ee5725a36 100644
--- a/testhal/STM32/STM32F4xx/SDC/main.c
+++ b/testhal/STM32/STM32F4xx/SDC/main.c
@@ -31,8 +31,8 @@ static uint8_t sd_scratchpad[512];
* SDIO configuration.
*/
static const SDCConfig sdccfg = {
- SDC_MODE_4BIT,
- sd_scratchpad
+ sd_scratchpad,
+ SDC_MODE_4BIT
};
/*