Files
Matthias Blankertz 0bc4815926 - Debugged SPI module
- Debugged UART
- Firmware support for SPI, UART
- Work on SD/MMC support in firmware
- Debugged mblite core/WB interface
2013-06-08 11:53:27 +02:00

14 lines
277 B
C

// Copyright (c) 2013 Matthias Blankertz <matthias@blankertz.org>
#ifndef _SD_H_
#define _SD_H_
#include <stdbool.h>
bool sd_por();
unsigned char sd_cmd(unsigned char cmd, unsigned param);
unsigned char sd_cmd_r7(unsigned char cmd, unsigned param, unsigned *resp);
#endif