summaryrefslogtreecommitdiff
path: root/firmware/export/mmc.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/mmc.h')
-rw-r--r--firmware/export/mmc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/export/mmc.h b/firmware/export/mmc.h
index bd4b7f93ec..06d99d219e 100644
--- a/firmware/export/mmc.h
+++ b/firmware/export/mmc.h
@@ -28,6 +28,8 @@
28struct storage_info; 28struct storage_info;
29 29
30void mmc_enable(bool on); 30void mmc_enable(bool on);
31void mmc_spindown(int seconds);
32void mmc_sleep(void);
31void mmc_sleepnow(void); 33void mmc_sleepnow(void);
32bool mmc_disk_is_active(void); 34bool mmc_disk_is_active(void);
33int mmc_soft_reset(void); 35int mmc_soft_reset(void);
@@ -35,6 +37,7 @@ int mmc_init(void);
35void mmc_close(void); 37void mmc_close(void);
36int mmc_read_sectors(IF_MV2(int drive,) unsigned long start, int count, void* buf); 38int mmc_read_sectors(IF_MV2(int drive,) unsigned long start, int count, void* buf);
37int mmc_write_sectors(IF_MV2(int drive,) unsigned long start, int count, const void* buf); 39int mmc_write_sectors(IF_MV2(int drive,) unsigned long start, int count, const void* buf);
40void mmc_spin(void);
38int mmc_spinup_time(void); 41int mmc_spinup_time(void);
39 42
40#ifdef STORAGE_GET_INFO 43#ifdef STORAGE_GET_INFO