aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM32/sdc_lld.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-05-07 13:24:04 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-05-07 13:24:04 +0000
commit7109dcee27d7fbfa77f1c9b16c934f6ca550f5d5 (patch)
tree038fe570e187e46361449a2e0be98ec7235ffcb3 /os/hal/platforms/STM32/sdc_lld.h
parentf8c8c48fa989c71ab9b2e26677329ed108a779fb (diff)
downloadChibiOS-7109dcee27d7fbfa77f1c9b16c934f6ca550f5d5.tar.gz
ChibiOS-7109dcee27d7fbfa77f1c9b16c934f6ca550f5d5.tar.bz2
ChibiOS-7109dcee27d7fbfa77f1c9b16c934f6ca550f5d5.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2923 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32/sdc_lld.h')
-rw-r--r--os/hal/platforms/STM32/sdc_lld.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/os/hal/platforms/STM32/sdc_lld.h b/os/hal/platforms/STM32/sdc_lld.h
index 3f12dd4fc..702e27d59 100644
--- a/os/hal/platforms/STM32/sdc_lld.h
+++ b/os/hal/platforms/STM32/sdc_lld.h
@@ -184,8 +184,10 @@ extern "C" {
uint32_t *resp);
bool_t sdc_lld_send_cmd_long_crc(SDCDriver *sdcp, uint8_t cmd, uint32_t arg,
uint32_t *resp);
- bool_t sdc_lld_read_blocks(SDCDriver *sdcp, uint8_t *buffer, uint32_t n);
- bool_t sdc_lld_write_blocks(SDCDriver *sdcp, const uint8_t *buf, uint32_t n);
+ bool_t sdc_lld_read(SDCDriver *sdcp, uint32_t startblk,
+ uint8_t *buf, uint32_t n);
+ bool_t sdc_lld_write(SDCDriver *sdcp, uint32_t startblk,
+ const uint8_t *buf, uint32_t n);
#ifdef __cplusplus
}
#endif