FlexBook / Mbed 2 deprecated FlexBook171204a

Dependencies:   SDFileSystem app epson mbed msp430 pl tests

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers sdcard.c Source File

sdcard.c

00001 /*
00002   Plastic Logic EPD project on MSP430
00003 
00004   Copyright (C) 2013 Plastic Logic Limited
00005 
00006   This program is free software: you can redistribute it and/or modify
00007   it under the terms of the GNU General Public License as published by
00008   the Free Software Foundation, either version 3 of the License, or
00009   (at your option) any later version.
00010 
00011   This program is distributed in the hope that it will be useful,
00012   but WITHOUT ANY WARRANTY; without even the implied warranty of
00013   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014   GNU General Public License for more details.
00015 
00016   You should have received a copy of the GNU General Public License
00017   along with this program.  If not, see <http://www.gnu.org/licenses/>.
00018 */
00019 /*
00020  * msp430-sdcard.c -- MSP430 SD card SPI interface driver
00021  *
00022  * Authors: Nick Terry <nick.terry@plasticlogic.com>
00023  *
00024  */
00025 
00026 #include "sdcard.h"
00027 
00028 #include <stdio.h>
00029 
00030 struct pl_platform *SDCard_plat = NULL;
00031 
00032 void SDCard_uDelay(uint16_t usecs)
00033 {
00034     printf("SDCard_uDelay not implemented\n");
00035 }
00036 
00037 void SDCard_init(void)
00038 {
00039     printf("SDCard_init not implemented\n");
00040 }
00041 
00042 void SDCard_fastMode(void)
00043 {
00044     printf("SDCard_fastMode not implemented\n");
00045 }
00046 
00047 void SDCard_readFrame(uint8_t *pBuffer, uint16_t size)
00048 {
00049     printf("SDCard_readFrame not implemented\n");
00050 }
00051 
00052 void SDCard_sendFrame(uint8_t *pBuffer, uint16_t size)
00053 {
00054     printf("SDCard_sendFrame not implemented\n");
00055 }
00056 
00057 void SDCard_setCSHigh(void)
00058 {
00059     printf("SDCard_setCSHigh not implemented\n");
00060 }
00061 
00062 void SDCard_setCSLow(void)
00063 {
00064     printf("SDCard_setCSLow not implemented\n");
00065 }
00066