- Debugged UART - Firmware support for SPI, UART - Work on SD/MMC support in firmware - Debugged mblite core/WB interface
14 lines
277 B
C
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
|