From 1a6c9097368e7c5981715e55c391237ca18cb0f4 Mon Sep 17 00:00:00 2001 From: nvt-se Date: Mon, 10 Nov 2008 14:32:49 +0000 Subject: [PATCH] added sd_write declaration. --- platform/msb430/dev/sd/sd.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/platform/msb430/dev/sd/sd.h b/platform/msb430/dev/sd/sd.h index 814f09597..c4ea79aba 100644 --- a/platform/msb430/dev/sd/sd.h +++ b/platform/msb430/dev/sd/sd.h @@ -46,9 +46,9 @@ Berlin, 2007 * @brief MMC-/SD-Card library, Public interface * * @author Michael Baar - * @version $Revision: 1.4 $ + * @version $Revision: 1.5 $ * - * $Id: sd.h,v 1.4 2008/03/31 13:48:03 nvt-se Exp $ + * $Id: sd.h,v 1.5 2008/11/10 14:32:49 nvt-se Exp $ */ /** @@ -383,6 +383,10 @@ sd_cache_t *sd_cache_read_block(const uint32_t * blAdr); uint16_t sd_read(void *pBuffer, uint32_t address, uint16_t size); #endif +#if SD_WRITE +uint16_t sd_write(uint32_t address, void *pBuffer, uint16_t size); +#endif + #endif /*__SD_H__*/ /** @} */