diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-04-30 10:14:07 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-04-30 10:14:07 +0000 |
commit | fc8ea30f6e774ab92b2a44c4eb5e40ae2a9d9d1f (patch) | |
tree | c8b41227eeda0a42397e35156c2bc9da15af5954 /testhal | |
parent | 2e7866f634ddf31530c0c83ff8bdfc3b75f42e82 (diff) | |
download | ChibiOS-fc8ea30f6e774ab92b2a44c4eb5e40ae2a9d9d1f.tar.gz ChibiOS-fc8ea30f6e774ab92b2a44c4eb5e40ae2a9d9d1f.tar.bz2 ChibiOS-fc8ea30f6e774ab92b2a44c4eb5e40ae2a9d9d1f.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2906 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal')
-rw-r--r-- | testhal/STM32/SDIO/halconf.h | 2 | ||||
-rw-r--r-- | testhal/STM32/SDIO/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32/SDIO/halconf.h b/testhal/STM32/SDIO/halconf.h index 7f129acc6..57022db5b 100644 --- a/testhal/STM32/SDIO/halconf.h +++ b/testhal/STM32/SDIO/halconf.h @@ -73,7 +73,7 @@ * @brief Enables the ICU subsystem.
*/
#if !defined(HAL_USE_ICU) || defined(__DOXYGEN__)
-#define HAL_USE_ICU TRUE
+#define HAL_USE_ICU FALSE
#endif
/**
diff --git a/testhal/STM32/SDIO/main.c b/testhal/STM32/SDIO/main.c index 3e7971f49..3194921f4 100644 --- a/testhal/STM32/SDIO/main.c +++ b/testhal/STM32/SDIO/main.c @@ -25,6 +25,7 @@ * SDIO configuration.
*/
static const SDCConfig sdccfg = {
+ 0
};
/*
@@ -53,5 +54,4 @@ int main(void) { while (TRUE) {
chThdSleepMilliseconds(500);
}
- return 0;
}
|