SdFat
|
Extended SD I/O block driver. More...
#include <SdSpiCard.h>
Public Member Functions | |
bool | begin (SdSpiDriver *spi, uint8_t csPin, SPISettings spiSettings) |
uint32_t | cardSize () |
bool | erase (uint32_t firstBlock, uint32_t lastBlock) |
bool | eraseSingleBlockEnable () |
void | error (uint8_t code) |
int | errorCode () const |
int | errorData () const |
bool | isBusy () |
bool | readBlock (uint32_t block, uint8_t *dst) |
bool | readBlocks (uint32_t block, uint8_t *dst, size_t nb) |
bool | readCID (cid_t *cid) |
bool | readCSD (csd_t *csd) |
bool | readData (uint8_t *dst) |
bool | readOCR (uint32_t *ocr) |
bool | readStart (uint32_t blockNumber) |
bool | readStatus (uint8_t *status) |
bool | readStop () |
void | spiStart () |
void | spiStop () |
bool | syncBlocks () |
int | type () const |
bool | writeBlock (uint32_t block, const uint8_t *src) |
bool | writeBlocks (uint32_t block, const uint8_t *src, size_t nb) |
bool | writeData (const uint8_t *src) |
bool | writeStart (uint32_t blockNumber) |
bool | writeStart (uint32_t blockNumber, uint32_t eraseCount) |
bool | writeStop () |
Extended SD I/O block driver.
|
inline |
Initialize the SD card
[in] | spi | SPI driver. |
[in] | csPin | Card chip select pin number. |
[in] | spiSettings | SPI speed, mode, and bit order. |
|
inherited |
Determine the size of an SD flash memory card.
|
inherited |
Erase a range of blocks.
[in] | firstBlock | The address of the first block in the range. |
[in] | lastBlock | The address of the last block in the range. |
|
inherited |
Determine if card supports single block erase.
|
inlineinherited |
Set SD error code.
[in] | code | value for error code. |
|
inlineinherited |
|
inlineinherited |
|
inherited |
Check for busy. MISO low indicates the card is busy.
bool SdSpiCardEX::readBlock | ( | uint32_t | block, |
uint8_t * | dst | ||
) |
Read a 512 byte block from an SD card.
[in] | block | Logical block to be read. |
[out] | dst | Pointer to the location that will receive the data. |
Copyright (c) 2011-2018 Bill Greiman This file is part of the SdFat library for SD memory cards.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
bool SdSpiCardEX::readBlocks | ( | uint32_t | block, |
uint8_t * | dst, | ||
size_t | nb | ||
) |
Read multiple 512 byte blocks from an SD card.
[in] | block | Logical block to be read. |
[in] | nb | Number of blocks to be read. |
[out] | dst | Pointer to the location that will receive the data. |
|
inlineinherited |
Read a card's CID register. The CID contains card identification information such as Manufacturer ID, Product name, Product serial number and Manufacturing date.
[out] | cid | pointer to area for returned data. |
|
inlineinherited |
Read a card's CSD register. The CSD contains Card-Specific Data that provides information regarding access to the card's contents.
[out] | csd | pointer to area for returned data. |
|
inherited |
Read one data block in a multiple block read sequence
[out] | dst | Pointer to the location for the data to be read. |
|
inherited |
Read OCR register.
[out] | ocr | Value of OCR register. |
|
inherited |
Start a read multiple blocks sequence.
[in] | blockNumber | Address of first block in sequence. |
|
inherited |
Return the 64 byte card status
[out] | status | location for 64 status bytes. |
|
inherited |
End a read multiple blocks sequence.
|
inherited |
Set CS low and activate the card.
|
inherited |
Set CS high and deactivate the card.
bool SdSpiCardEX::syncBlocks | ( | ) |
End multi-block transfer and go to idle state.
|
inlineinherited |
Return the card type: SD V1, SD V2 or SDHC
bool SdSpiCardEX::writeBlock | ( | uint32_t | block, |
const uint8_t * | src | ||
) |
Writes a 512 byte block to an SD card.
[in] | block | Logical block to be written. |
[in] | src | Pointer to the location of the data to be written. |
bool SdSpiCardEX::writeBlocks | ( | uint32_t | block, |
const uint8_t * | src, | ||
size_t | nb | ||
) |
Write multiple 512 byte blocks to an SD card.
[in] | block | Logical block to be written. |
[in] | nb | Number of blocks to be written. |
[in] | src | Pointer to the location of the data to be written. |
|
inherited |
Write one data block in a multiple block write sequence.
[in] | src | Pointer to the location of the data to be written. |
|
inherited |
Start a write multiple blocks sequence.
[in] | blockNumber | Address of first block in sequence. |
|
inherited |
Start a write multiple blocks sequence with pre-erase.
[in] | blockNumber | Address of first block in sequence. |
[in] | eraseCount | The number of blocks to be pre-erased. |
|
inherited |
End a write multiple blocks sequence.