Remove old header file and add more missing header files

This commit is contained in:
2014-11-23 20:31:13 +00:00
parent 4f171f3023
commit 53a8072424
5 changed files with 82 additions and 25 deletions

12
sdcard.h Normal file
View File

@@ -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 */