git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1352 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
d4c616e6ee
commit
31c93cbb65
|
@ -19,14 +19,15 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file mmc_spi.c
|
* @file mmc_spi.c
|
||||||
* @brief MMC over SPI driver code
|
* @brief MMC over SPI driver code.
|
||||||
* @addtogroup MMC_SPI
|
* @addtogroup MMC_SPI
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ch.h>
|
#include "ch.h"
|
||||||
#include <spi.h>
|
#include "hal.h"
|
||||||
#include <mmc_spi.h>
|
|
||||||
|
#if CH_HAL_USE_MMC_SPI
|
||||||
|
|
||||||
/*===========================================================================*/
|
/*===========================================================================*/
|
||||||
/* Driver local functions. */
|
/* Driver local functions. */
|
||||||
|
@ -569,4 +570,6 @@ bool_t mmcStopSequentialWrite(MMCDriver *mmcp) {
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* CH_HAL_USE_MMC_SPI */
|
||||||
|
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
Loading…
Reference in New Issue