summaryrefslogtreecommitdiff
path: root/firmware/export/sd.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/sd.h')
-rw-r--r--firmware/export/sd.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/firmware/export/sd.h b/firmware/export/sd.h
index 9d47290d85..6c848c34cf 100644
--- a/firmware/export/sd.h
+++ b/firmware/export/sd.h
@@ -25,6 +25,8 @@
25#include <stdbool.h> 25#include <stdbool.h>
26#include "mv.h" /* for HAVE_MULTIVOLUME or not */ 26#include "mv.h" /* for HAVE_MULTIVOLUME or not */
27 27
28#define SD_BLOCK_SIZE 512 /* XXX : support other sizes ? */
29
28struct storage_info; 30struct storage_info;
29 31
30void sd_enable(bool on); 32void sd_enable(bool on);
@@ -51,11 +53,6 @@ bool card_detect_target(void);
51 53
52long sd_last_disk_activity(void); 54long sd_last_disk_activity(void);
53 55
54static const unsigned char sd_mantissa[] = { /* *10 */
55 0, 10, 12, 13, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 70, 80 };
56static const unsigned int sd_exponent[] = { /* use varies */
57 1,10,100,1000,10000,100000,1000000,10000000,100000000,1000000000 };
58
59/* SD States */ 56/* SD States */
60#define SD_IDLE 0 57#define SD_IDLE 0
61#define SD_READY 1 58#define SD_READY 1