From 9dfb720cfeef3c005bd9b98156f5bb2991757c8d Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 14 Nov 2009 17:05:00 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1293 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/io/mmc_spi.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/os/io/mmc_spi.h b/os/io/mmc_spi.h index c4427f7c2..96e5e3ec5 100644 --- a/os/io/mmc_spi.h +++ b/os/io/mmc_spi.h @@ -192,6 +192,9 @@ extern "C" { bool_t mmcStartSequentialRead(MMCDriver *mmcp, uint32_t startblk); bool_t mmcSequentialRead(MMCDriver *mmcp, uint8_t *buffer); bool_t mmcStopSequentialRead(MMCDriver *mmcp); + bool_t mmcStartSequentialWrite(MMCDriver *mmcp, uint32_t startblk); + bool_t mmcSequentialWrite(MMCDriver *mmcp, const uint8_t *buffer); + bool_t mmcStopSequentialWrite(MMCDriver *mmcp); #ifdef __cplusplus } #endif