diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-11-14 17:05:00 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-11-14 17:05:00 +0000 |
commit | 9dfb720cfeef3c005bd9b98156f5bb2991757c8d (patch) | |
tree | 4270c133833e35c6ac350c291e9ae8b8b0995281 /os/io | |
parent | bd2685805d422575d5141dae8d5252518e530cf0 (diff) | |
download | ChibiOS-9dfb720cfeef3c005bd9b98156f5bb2991757c8d.tar.gz ChibiOS-9dfb720cfeef3c005bd9b98156f5bb2991757c8d.tar.bz2 ChibiOS-9dfb720cfeef3c005bd9b98156f5bb2991757c8d.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1293 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/io')
-rw-r--r-- | os/io/mmc_spi.h | 3 |
1 files changed, 3 insertions, 0 deletions
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
|