mbed OS SDCard Driver for GR-PEACH.

Dependencies:   sd-driver-hs

Dependents:   mbed-os-storage-access GR-PEACH_Digital_Signage GR-PEACH-mbed-os-storage-access

You can access it faster than using sd-driver as it is.

SDBlockDevice_GR_PEACH.h

Committer:
dkato
Date:
2017-03-23
Revision:
1:98b088c91edd
Parent:
0:4bc3a3f17825

File content as of revision 1:98b088c91edd:

#ifndef MBED_SDFILESYSTEM_GR_PEACH_H
#define MBED_SDFILESYSTEM_GR_PEACH_H

#include "SDBlockDevice.h"

/**
 * A class to communicate a SD
 */
class SDBlockDevice_GR_PEACH : public SDBlockDevice {
public:

    /**
    * Constructor
    *
    * @param rootdir mount name
    */
    SDBlockDevice_GR_PEACH() : SDBlockDevice(P8_5, P8_6, P8_3, P8_4), _sd_cd(P7_8), _connect(false) {
        // Set SPI clock rate to 20MHz for data transfer
        _transfer_sck = 20000000;
    }

    /**
    * Check if a SD is connected
    *
    * @return true if a SD is connected
    */
    bool connected() {
        if (_sd_cd.read() != 0) {
            _connect = false;
        }
        return _connect;
    }

    /**
     * Try to connect to a SD
     *
     * @return true if connection was successful
     */
    bool connect() {
        if (_sd_cd.read() == 0) {
            _connect = true;
        } else {
            _connect = false;
        }
        return _connect;
    }


private:
    DigitalIn   _sd_cd;
    bool        _connect;
};

#endif