git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2906 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2011-04-30 10:14:07 +00:00
parent 2e7866f634
commit fc8ea30f6e
3 changed files with 3 additions and 3 deletions

View File

@ -108,7 +108,7 @@ typedef struct SDCDriver SDCDriver;
* @note It could be empty on some architectures.
*/
typedef struct {
uint32_t dummy;
} SDCConfig;
/**

View File

@ -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
/**

View File

@ -25,6 +25,7 @@
* SDIO configuration.
*/
static const SDCConfig sdccfg = {
0
};
/*
@ -53,5 +54,4 @@ int main(void) {
while (TRUE) {
chThdSleepMilliseconds(500);
}
return 0;
}