diff options
author | Uladzimir Pylinski <barthess@yandex.ru> | 2015-02-19 15:27:55 +0000 |
---|---|---|
committer | Uladzimir Pylinski <barthess@yandex.ru> | 2015-02-19 15:27:55 +0000 |
commit | 9e2c12eb741938452ec295a1b9809e96174fd71f (patch) | |
tree | f97c774ba0eae9b8827c80dbbb46c66a3ce0b8b7 | |
parent | 39592bc15c28d5294a8b219153822d49f0efa145 (diff) | |
download | ChibiOS-9e2c12eb741938452ec295a1b9809e96174fd71f.tar.gz ChibiOS-9e2c12eb741938452ec295a1b9809e96174fd71f.tar.bz2 ChibiOS-9e2c12eb741938452ec295a1b9809e96174fd71f.zip |
SDIO. Fixed testhal code.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7694 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | testhal/STM32/STM32F4xx/SDC/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testhal/STM32/STM32F4xx/SDC/main.c b/testhal/STM32/STM32F4xx/SDC/main.c index dfff331e4..0ab63ed26 100644 --- a/testhal/STM32/STM32F4xx/SDC/main.c +++ b/testhal/STM32/STM32F4xx/SDC/main.c @@ -26,7 +26,8 @@ * SDIO configuration.
*/
static const SDCConfig sdccfg = {
- SDC_MODE_4BIT
+ SDC_MODE_4BIT,
+ NULL
};
/*
|