Change return types of two functions uint8_t
These functions aren't used but they should return the appropriate type.
This commit is contained in:
parent
800f44509d
commit
a26651e7aa
|
|
@ -160,9 +160,9 @@ class Sd2Card {
|
||||||
/**
|
/**
|
||||||
* \return error code for last error. See Sd2Card.h for a list of error codes.
|
* \return error code for last error. See Sd2Card.h for a list of error codes.
|
||||||
*/
|
*/
|
||||||
int errorCode() const {return errorCode_;}
|
uint8_t errorCode() const {return errorCode_;}
|
||||||
/** \return error data for last error. */
|
/** \return error data for last error. */
|
||||||
int errorData() const {return status_;}
|
uint8_t errorData() const {return status_;}
|
||||||
/**
|
/**
|
||||||
* Initialize an SD flash memory card with default clock rate and chip
|
* Initialize an SD flash memory card with default clock rate and chip
|
||||||
* select pin. See sd2Card::init(uint8_t sckRateID).
|
* select pin. See sd2Card::init(uint8_t sckRateID).
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue