diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-18 23:17:25 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-18 23:17:25 -0400 |
commit | 1a11ab00d898c4484bc0f518a1d53b1f4cbf5fb4 (patch) | |
tree | 870a9e909d20235e09b4b1b613536ecaf05b17a2 /include/sdcard.h | |
parent | 8e11f269ce352df26af7c44d283131494dcd70fa (diff) |
SD cardgit status FAT32git status Beautiful!
Diffstat (limited to 'include/sdcard.h')
-rw-r--r-- | include/sdcard.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/include/sdcard.h b/include/sdcard.h new file mode 100644 index 0000000..8cdef58 --- /dev/null +++ b/include/sdcard.h @@ -0,0 +1,42 @@ +/** + * @file sdcard.c + * Provides a basic library for accessing an SD card + * + * Copyright (C) 2018 Clyne Sullivan + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + +#ifndef SDCARD_H_ +#define SDCARD_H_ + +#include <stdint.h> + +/** + * Attempts to initialize the SD card. + * Warning: Little to no error checking is done/handled properly. + */ +void sd_init(void); + +/** + * Reads in data from the SD card. + * LBAs are 512 bytes long. + * @param buf the pre-allocated buffer to store data in + * @param lba the lba to read from + * @param count the number of bytes to read + * @return the buffer + */ +uint8_t *sd_read(uint8_t *buf, uint32_t lba, uint32_t count); + +#endif // SDCARD_H_ |