Add SD card software interface

Adds a function to send a command to the sd card.
This commit is contained in:
Byron Lathi
2022-04-10 17:55:51 -05:00
parent cd11670fb1
commit 7092cc8f77
4 changed files with 42 additions and 0 deletions

8
sw/sd_card.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef _SD_CARD_H
#define _SD_CARD_H
#include <stdint.h>
void sd_card_command(uint32_t arg, uint8_t cmd);
#endif