Added HangmanGame class, but does not work yet

Dependencies:   SDFileSystem app epson mbed msp430 pl tests

sdcard.c

Committer:
group-FlexBook
Date:
2017-12-04
Revision:
0:fa7450a43b99

File content as of revision 0:fa7450a43b99:

/*
  Plastic Logic EPD project on MSP430

  Copyright (C) 2013 Plastic Logic Limited

  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 <http://www.gnu.org/licenses/>.
*/
/*
 * msp430-sdcard.c -- MSP430 SD card SPI interface driver
 *
 * Authors: Nick Terry <nick.terry@plasticlogic.com>
 *
 */

#include "sdcard.h"

#include <stdio.h>

struct pl_platform *SDCard_plat = NULL;

void SDCard_uDelay(uint16_t usecs)
{
    printf("SDCard_uDelay not implemented\n");
}

void SDCard_init(void)
{
    printf("SDCard_init not implemented\n");
}

void SDCard_fastMode(void)
{
    printf("SDCard_fastMode not implemented\n");
}

void SDCard_readFrame(uint8_t *pBuffer, uint16_t size)
{
    printf("SDCard_readFrame not implemented\n");
}

void SDCard_sendFrame(uint8_t *pBuffer, uint16_t size)
{
    printf("SDCard_sendFrame not implemented\n");
}

void SDCard_setCSHigh(void)
{
    printf("SDCard_setCSHigh not implemented\n");
}

void SDCard_setCSLow(void)
{
    printf("SDCard_setCSLow not implemented\n");
}