Browse Source

Change return types of two functions uint8_t

These functions aren't used but they should return the appropriate type.
Guðni Már Gilbert 2 years ago
parent
commit
a26651e7aa
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Firmware/Sd2Card.h

+ 2 - 2
Firmware/Sd2Card.h

@@ -160,9 +160,9 @@ class Sd2Card {
   /**
    * \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. */
-  int errorData() const {return status_;}
+  uint8_t errorData() const {return status_;}
   /**
    * Initialize an SD flash memory card with default clock rate and chip
    * select pin.  See sd2Card::init(uint8_t sckRateID).