The unified diff between revisions [3dc5e7ac..] and [dc88787e..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'sdcard.h'

#
# old_revision [3dc5e7ac4bcb952cc267892653dd78ed095d8778]
# new_revision [dc88787ecd1d574feba045763baed2a7651ff33d]
#
# add_file "sdcard.h"
#  content [ac49ee3e6fa49554de89f3753fc75ce7208de84c]
#
============================================================
--- /dev/null	
+++ sdcard.h	ac49ee3e6fa49554de89f3753fc75ce7208de84c
@@ -0,0 +1,12 @@
+/* sdcard.h */
+
+#ifndef __SDCARD_H
+#define __SDCARD_H
+
+#include "types.h"
+
+bool init_sdcard(void);
+bool sdcard_read(unsigned int address, char *buffer, unsigned int length);
+void sdcard_poll(void);
+
+#endif /* __SDCARD_H */